Value

PreferredWidth.Value property

获取首选宽度值。测量单位在中指定Type属性.

public double Value { get; }

例子

演示如何验证表格单元格的首选宽度类型和值。

Document doc = new Document(MyDir + "Tables.docx");

Table table = doc.FirstSection.Body.Tables[0];
Cell firstCell = table.FirstRow.FirstCell;

Assert.AreEqual(PreferredWidthType.Percent, firstCell.CellFormat.PreferredWidth.Type);
Assert.AreEqual(11.16d, firstCell.CellFormat.PreferredWidth.Value);

也可以看看