New to Kendo UI for Angular? Start a free 30-day trial
EditorResizableOptions
Represents the size restrictions for the resizable Editor (see example).
typescript
const options: EditorResizableOptions = {
minWidth: 200,
minHeight: 100,
maxWidth: 800,
maxHeight: 600
};
Name | Type | Default | Description |
---|---|---|---|
maxHeight? |
|
Sets the maximum height of the resizable Editor in pixels. | |
maxWidth? |
|
Sets the maximum width of the resizable Editor in pixels. | |
minHeight? |
|
Sets the minimum height of the resizable Editor in pixels. | |
minWidth? |
|
Sets the minimum width of the resizable Editor in pixels. |