New to Telerik Document ProcessingStart a free 30-day trial

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:

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

Initialize a height descriptor with an explicit value.

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).

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

C#
public TableRowHeight(HeightType type)
Parameters:typeHeightType

The type.

Methods

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

C#
public override string ToString()
Returns:

string

A string representation of the table row height.

Overrides: object.ToString()