Type
PreferredWidth.Type property
Ottiene l’unità di misura utilizzata per questo valore di larghezza preferito.
public PreferredWidthType Type { get; }
Esempi
Mostra come verificare il tipo di larghezza e il valore preferiti di una cella di tabella.
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);
Guarda anche
- enum PreferredWidthType
- class PreferredWidth
- spazio dei nomi Aspose.Words.Tables
- assemblea Aspose.Words