IRowOptions

[ Interface ]

export interface IRowOptions {
    height: number | null;
    heightUnit: TcHmi.DimensionUnit | 'factor';
    heightMode: 'Value' | 'Content';
    minHeight: number | null;
    minHeightUnit: TcHmi.DimensionUnit;
    maxHeight: number | null;
    maxHeightUnit: TcHmi.DimensionUnit;
    overflow: boolean;
}

Properties

Name

Type

Description

height

number, null

Numerical value of the height of this column

heightUnit

TcHmi.DimensionUnit | 'factor'

Unit of the height of this column. This can also be 'factor' at this point

heightMode

'Value' | 'Content'

Only value and content is allowed here.

minHeight

number, null

Numerical value of the minimum height of this column

minHeightUnit

TcHmi.DimensionUnit

Unit of the minimum height of this column.

maxHeight

number, null

Numerical value of the maximum height of this column

maxHeightUnit

TcHmi.DimensionUnit

Unit of the maximum height of this column.

overflow

boolean

Specifies whether controls should be truncated if they are outside the cell.

See also

Schema: tchmi:framework#/definitions/TcHmi.Controls.System.TcHmiGrid.RowOptions