Base type for describing row height with a typed mode (TEnum) and a DIP value for layout.
Definition
Namespace:Telerik.Windows.Documents.Model.Tables
Assembly:Telerik.Windows.Documents.Core.dll
Type Parameters:
TEnum
The enum type that defines specific height-related options for the table row. Must be a type derived from Enum.
Syntax:
public abstract class TableRowHeightBase<TEnum> : IEquatable<TableRowHeightBase<TEnum>> where TEnum : Enum
Inheritance: objectTableRowHeightBase<TEnum>
Derived Classes:
Implements:
Methods
Determine whether the specified row-height descriptor equals this instance.
public bool Equals(TableRowHeightBase<TEnum> other)
The row-height descriptor to compare with the current instance.
Returns:Returns true if the specified row-height descriptor is equal to the current instance; otherwise, false.
Implements:
Operators
Compare two row-height descriptors for inequality.
public static bool operator !=(TableRowHeightBase<TEnum> a, TableRowHeightBase<TEnum> b)
True if the table row heights are different.
Compare two row-height descriptors for equality of type and value.
public static bool operator ==(TableRowHeightBase<TEnum> a, TableRowHeightBase<TEnum> b)
True if the table row heights are equal.