New to Kendo UI for Angular? Start a free 30-day trial
TextAreaResize
Specifies if the TextArea should auto resize, resize directions or none resize.
The possible values are:
vertical
(Default)—The TextArea component can be resized in vertical direction.auto
—Specifies whether the TextArea component will adjust its height automatically, based on the content.horizontal
—The TextArea component can be resized in horizontal direction.both
—The TextArea component can be resized in both - horizontal and vertical directions.none
—The TextArea cannot be resized.
type
TextAreaResize = "auto" | "vertical" | "horizontal" | "both" | "none";