Value

PreferredWidth.Value property

Obtiene el valor de ancho preferido. La unidad de medida se especifica en elType propiedad.

public double Value { 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