Type
PreferredWidth.Type property
Obtiene la unidad de medida utilizada para este valor de ancho preferido.
public PreferredWidthType Type { get; }
Ejemplos
Muestra cómo verificar el tipo de ancho preferido y el valor de una celda de una tabla.
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);
Ver también
- enum PreferredWidthType
- class PreferredWidth
- espacio de nombres Aspose.Words.Tables
- asamblea Aspose.Words