TableCell 构造函数

定义

初始化 TableCell 类的新实例。

重载

TableCell()

初始化 TableCell 类的新的空实例。

TableCell(Block)

初始化 TableCell 类的一个新实例,将指定的 Block 对象作为新的 TableCell 的初始内容。

TableCell()

初始化 TableCell 类的新的空实例。

public TableCell ();

适用于

.NET Framework 4.8.1 和其他版本
产品 版本
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

TableCell(Block)

初始化 TableCell 类的一个新实例,将指定的 Block 对象作为新的 TableCell 的初始内容。

public TableCell (System.Windows.Documents.Block blockItem);

参数

blockItem
Block

一个 Block 对象,它指定新的 TableCell 的初始内容。

示例

以下示例演示此构造函数的用法。

// A child Block element for the new TableCell element.
Paragraph parx = new Paragraph(new Run("A bit of text content..."));

// After this line executes, the new element "cellx"
// contains the specified Block element, "parx".
TableCell cellx = new TableCell(parx);

适用于

.NET Framework 4.8.1 和其他版本
产品 版本
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9