Type

PreferredWidth.Type property

获取用于此首选宽度值的测量单位。

public PreferredWidthType Type { 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);

也可以看看