Class
TableRowHeight

Height specification for a TableRow, supporting automatic, exact, or minimum values.

Definition

Namespace:Telerik.Windows.Documents.Fixed.Model.Editing.Tables

Assembly:Telerik.Windows.Documents.Fixed.dll

Syntax:

cs-api-definition
public class TableRowHeight : TableRowHeightBase<HeightType>, IEquatable<TableRowHeightBase<HeightType>>

Inheritance: objectTableRowHeightBase<HeightType>TableRowHeight

Implements: IEquatable<TableRowHeightBase<HeightType>>

Inherited Members TableRowHeightBase<HeightType>.Equals(object)TableRowHeightBase<HeightType>.Equals(TableRowHeightBase<HeightType>)TableRowHeightBase<HeightType>.GetHashCode()TableRowHeightBase<HeightType>.ValueTableRowHeightBase<HeightType>.Type

Constructors

TableRowHeight(HeightType)

Initialize a height descriptor, typically used to create TableRowHeight with Auto.

Declaration

cs-api-definition
public TableRowHeight(HeightType type)

Parameters

type

HeightType

The type.

TableRowHeight(HeightType, double)

Initialize a height descriptor with an explicit value.

Declaration

cs-api-definition
public TableRowHeight(HeightType type, double value)

Parameters

type

HeightType

The type of the height.

value

double

The row height in device independent pixels (1/96 inch).

Methods

ToString()

Returns a string that represents the current TableRowHeight. For Auto the type is returned; otherwise the type and the numeric value.

Declaration

cs-api-definition
public override string ToString()

Returns

string

A string representation of the table row height.

Overrides object.ToString()