如何向 DOCX 添加表格

This article was translated from English: Does it need improvement?
Translated
View the article in English

表格是按行和列排列的單元格網格。 它用於以結構化格式組織和呈現信息。 每個行與列的交叉點是一個單元格,可以包含文字、數字或其他類型的數據。 表格通常用於整齊地排列數據、創建時間表或以視覺上有組織的方式格式化信息。

快速開始使用IronWord

立即在您的專案中使用IronWord,並享受免費試用。

第一步:
green arrow pointer


新增表格範例

表格是 Word 文件中的一個重要組件。 首先,通過提供行數和列數來實例化Table類。 從那裡開始,可以自訂表格的樣式,如背景顏色、陰影、邊框、斑馬紋和寬度。 其次,通過指定表格的行和列,可以非常直觀地訪問表格的每個單元格[行,列]** 格式。 在每個儲存格中,可以添加文字、圖像、形狀、段落或甚至整個表格。 最後,這個表格可以加入到Word文件中。

提示
所有行和列的索引位置都遵循從零開始的索引。

:path=/static-assets/word/content-code-examples/how-to/add-table-add-table.cs
using IronWord;
using IronWord.Models;
using IronWord.Models.Enums;

WordDocument doc = new WordDocument();

// Create table
Table table = new Table(5, 3);

// Configure border style
BorderStyle borderStyle = new BorderStyle();
borderStyle.BorderColor = Color.Black;
borderStyle.BorderValue = BorderValues.Thick;
borderStyle.BorderSize = 5;

// Configure table border
TableBorders tableBorders = new TableBorders()
{
    TopBorder = borderStyle,
    RightBorder = borderStyle,
    BottomBorder = borderStyle,
    LeftBorder = borderStyle,
};

// Apply styling
table.Zebra = new ZebraColor("FFFFFF", "dddddd");
table.Borders = tableBorders;

// Populate table
table[0, 0] = new TableCell(new Text("Number"));
table[0, 1] = new TableCell(new Text("First Name"));
table[0, 2] = new TableCell(new Text("Last Name"));
for (int i = 1; i < table.Rows.Count; i++)
{
    table[i, 0].AddChild(new Text($"{i}"));
    table[i, 1].AddChild(new Text($"---"));
    table[i, 2].AddChild(new Text($"---"));
}

// Add table
doc.AddTable(table);

doc.Save("document.docx");
Imports IronWord
Imports IronWord.Models
Imports IronWord.Models.Enums

Private doc As New WordDocument()

' Create table
Private table As New Table(5, 3)

' Configure border style
Private borderStyle As New BorderStyle()
borderStyle.BorderColor = Color.Black
borderStyle.BorderValue = BorderValues.Thick
borderStyle.BorderSize = 5

' Configure table border
Dim tableBorders As New TableBorders() With {
	.TopBorder = borderStyle,
	.RightBorder = borderStyle,
	.BottomBorder = borderStyle,
	.LeftBorder = borderStyle
}

' Apply styling
table.Zebra = New ZebraColor("FFFFFF", "dddddd")
table.Borders = tableBorders

' Populate table
table(0, 0) = New TableCell(New Text("Number"))
table(0, 1) = New TableCell(New Text("First Name"))
table(0, 2) = New TableCell(New Text("Last Name"))
For i As Integer = 1 To table.Rows.Count - 1
	table(i, 0).AddChild(New Text($"{i}"))
	table(i, 1).AddChild(New Text($"---"))
	table(i, 2).AddChild(New Text($"---"))
Next i

' Add table
doc.AddTable(table)

doc.Save("document.docx")
VB   C#
新增表格

TableCell 類的 AddContent 方法接受一個 ContentElement 對象,其中包括從段落、圖像和形狀到表格本身的所有內容。 在這種情況下,您可以擁有嵌套表格,為特定用例提供非常有用的示例。

可用樣式

邊界

探索可以使用 BorderValues 枚舉設置的所有可用邊框值選項:

邊界值

<!