Type
PreferredWidth.Type property
Hämtar måttenheten som används för detta föredragna breddvärde.
public PreferredWidthType Type { get; }
Exempel
Visar hur man verifierar den föredragna breddtypen och värdet för en tabellcell.
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);
Se även
- enum PreferredWidthType
- class PreferredWidth
- namnutrymme Aspose.Words.Tables
- hopsättning Aspose.Words