Table |
The TableCell type exposes the following members.
Name | Description | |
---|---|---|
TableCell(DocumentCore) | Creates a new Table Cell. | |
TableCell(DocumentCore, Block) | Creates a new Table Cell with Block elements. | |
TableCell(DocumentCore, IEnumerableBlock) | Creates a new Table Cell with Block elements. |
Name | Description | |
---|---|---|
Blocks | The collection of Block elements (Paragraphs, Table, etc) inside this cell. | |
CellFormat | Gets and sets cell formatting. | |
ColumnSpan | The attributes COLSPAN (“how many across”) and ROWSPAN (“how many down”) indicate how many columns or rows a cell should take up. | |
ElementType |
Gets the ElementType of this element instance.
(Overrides ElementElementType) | |
Parent | Gets the parent TableRow element. | |
ParentCollection | Gets the parent TableCellCollection element. | |
RowSpan | The attributes COLSPAN (“how many across”) and ROWSPAN (“how many down”) indicate how many columns or rows a cell should take up. |
See Developer Guide: How to modify an existing table
using System.IO; using System.Linq; using SautinSoft.Document; using SautinSoft.Document.Tables; namespace Sample { class Sample { static void Main(string[] args) { // Get your free 100-day key here: // https://sautinsoft.com/start-for-free/ ModifyTable(); } /// <summary> /// How to modify an existing table in a document. /// </summary> /// <remarks> /// Details: https://sautinsoft.com/products/document/help/net/developer-guide/modify-table.php /// </remarks> public static void ModifyTable() { string sourcePath = @"..\..\..\table.docx"; string destPath = "Table modified.docx"; // Load a document with a table. DocumentCore dc = DocumentCore.Load(sourcePath); // Find a first table in the document. Table table = (Table)dc.GetChildElements(true, ElementType.Table).First(); // Set dashed borders and yellow background for all cells. for (int r = 0; r < table.Rows.Count; r++) { for (int c = 0; c < table.Rows[r].Cells.Count; c++) { TableCell cell = table.Rows[r].Cells[c]; cell.CellFormat.Borders.SetBorders(MultipleBorderTypes.Outside, BorderStyle.Dashed, Color.Black, 1); cell.CellFormat.BackgroundColor = new Color("#FFCC00"); } } // Save the document as DOCX. dc.Save(destPath, new DocxSaveOptions()); // Show the source and the dest documents. System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(sourcePath) { UseShellExecute = true }); System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(destPath) { UseShellExecute = true }); } } }
Imports System Imports System.IO Imports System.Linq Imports SautinSoft.Document Imports SautinSoft.Document.Tables Module Sample Sub Main() ModifyTable() End Sub ''' Get your free 100-day key here: ''' https://sautinsoft.com/start-for-free/ ''' <summary> ''' How to modify an existing table in a document. ''' </summary> ''' <remarks> ''' Details: https://sautinsoft.com/products/document/help/net/developer-guide/modify-table.php ''' </remarks> Sub ModifyTable() Dim sourcePath As String = "..\..\..\table.docx" Dim destPath As String = "Table modified.docx" ' Load a document with a table. Dim dc As DocumentCore = DocumentCore.Load(sourcePath) ' Find a first table in the document. Dim table As Table = CType(dc.GetChildElements(True, ElementType.Table).First(), Table) ' Set dashed borders and yellow background for all cells. For r As Integer = 0 To table.Rows.Count - 1 Dim c As Integer = 0 Do While c < table.Rows(r).Cells.Count Dim cell As TableCell = table.Rows(r).Cells(c) cell.CellFormat.Borders.SetBorders(MultipleBorderTypes.Outside, BorderStyle.Dashed, Color.Black, 1) cell.CellFormat.BackgroundColor = New Color("#FFCC00") c += 1 Loop Next r ' Save the document as DOCX. dc.Save(destPath, New DocxSaveOptions()) ' Show the source and the dest documents. System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(sourcePath) With {.UseShellExecute = True}) System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(destPath) With {.UseShellExecute = True}) End Sub End Module