height()
Sets the outer, minimum, and/or maximum height of the element.
height(
height: BindingOrValue<string | number | undefined>,
minHeight?: BindingOrValue<string | number | undefined>,
maxHeight?: BindingOrValue<string | number | undefined>,
): this;
Parameters
- height — The target height, in pixels or string with unit.
- minHeight — The minimum height, in pixels or string with unit.
- maxHeight — The maximum height, in pixels or string with unit.
Return value
The builder instance for chaining.
Related
class ElementBuilder abstractstatic
An abstract base class for UI element builders.
