Spire.Doc is a professional Word .NET library specifically designed for developers to create, read, write, convert and print Word document files. Get free and professional technical support for Spire.Doc for .NET, Java, Android, C++, Python.

Fri May 13, 2011 1:12 pm

Within Spire.Doc.Table do you have a code example of column span.

jdupee@edocuments.co.uk
 
Posts: 3
Joined: Wed Mar 09, 2011 2:56 pm

Tue May 17, 2011 2:43 am

Dear jdupee,
Thanks for your inqury!You can do it like this:
Code: Select all
Spire.Doc.Table table = section.AddTable();
            table.ResetCells(data.Length + 1, header.Length);
            table.ApplyHorizontalMerge(1, 2, 4); //or//table.ApplyVerticalMerge(1, 2, 4);

Use the fuction ApplyHorizontalMerge(int rowIndex, int startCellIndex, int endCellIndex) you can add Row Span,the fuction ApplyVerticalMerge(int columnIndex, int startRowIndex, int endRowIndex) you can add Column Span!
Justin
Technical Support / Developer,
e-iceblue Support Team
User avatar

Justin Weng
 
Posts: 110
Joined: Mon Mar 28, 2011 5:54 am

Return to Spire.Doc