New to Kendo UI for Angular? Start a free 30-day trial
TextAreaResize
Sets the resize behavior for the TextArea.
The possible values are:
vertical
(Default)—You can resize the TextArea vertically.auto
—The TextArea adjusts its height automatically based on the content.horizontal
—You can resize the TextArea horizontally.both
—You can resize the TextArea both horizontally and vertically.none
—You cannot resize the TextArea.
type
TextAreaResize = "auto" | "vertical" | "horizontal" | "both" | "none";