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 | 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 | Numerical value of the minimum height of this column | |
minHeightUnit | Unit of the minimum height of this column. | |
maxHeight | Numerical value of the maximum height of this column | |
maxHeightUnit | Unit of the maximum height of this column. | |
overflow | Specifies whether controls should be truncated if they are outside the cell. |
See also
Schema: tchmi:framework#/definitions/TcHmi.Controls.System.TcHmiGrid.RowOptions