New to Telerik Document ProcessingStart a free 30-day trial

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:

C#
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

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

C#
public TableRowHeight(HeightType type, double value)
Parameters:typeHeightType

The type of the height.

valuedouble

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

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

C#
public TableRowHeight(HeightType type)
Parameters:typeHeightType

The type.

Methods

Returns a string that represents the current TableRowHeight.

C#
public override string ToString()
Returns:

string

A string representation of the current table row height instance.

Overrides: object.ToString()