TableWidthUnit
Defines table or cell width as auto-calculated, fixed pixels, or percentage of available space based on type and value.
Definition
Namespace:Telerik.Windows.Documents.Flow.Model.Styles
Assembly:Telerik.Windows.Documents.Flow.dll
Syntax:
public class TableWidthUnit
Inheritance: objectTableWidthUnit
Constructors
Initializes fixed-width using the specified value in device independent pixels (1/96 inch).
public TableWidthUnit(double value)
The value in device independent pixels (1/96 inch).
Initializes width with the specified type and value in device independent pixels (1/96 inch).
public TableWidthUnit(TableWidthUnitType type, double value)
The type.
valuedoubleThe value in device independent pixels (1/96 inch).
Initializes width with the specified type; typically used for auto-width elements.
Methods
Operators
Determines whether the specified table width units are different.
public static bool operator !=(TableWidthUnit a, TableWidthUnit b)
True if the table width units are different.
Determines whether the specified table width units are equal.
public static bool operator ==(TableWidthUnit a, TableWidthUnit b)
True if the table width units are equal.
Properties
Gets the width type indicating auto, fixed, or percentage measurement.
public TableWidthUnitType Type { get; }
The unit type.