Class
TableRowHeight

Defines row height behavior as auto-calculated, minimum, or exact based on the type and value specified.

Definition

Namespace:Telerik.Windows.Documents.Flow.Model.Styles

Assembly:Telerik.Windows.Documents.Flow.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)

Initializes row height with the specified behavior type; typically used for auto-height rows.

Declaration

cs-api-definition
public TableRowHeight(HeightType type)

Parameters

type

HeightType

The type.

TableRowHeight(HeightType, double)

Initializes row height with the specified behavior type and value in device independent pixels (1/96 inch).

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.

Declaration

cs-api-definition
public override string ToString()

Returns

string

A string representation of the current table row height instance.

Overrides object.ToString()