window class : CanResize(bool) setter
Description
Sets a value that indicates whether the window is resizable.
Syntax
instance.CanResize = value;
Assigned value
Class | Description |
bool | Whether the window is resizable. |
Return value
None.
Sample code
1: | window w = new window(); |
2: | w.CanResize = false; // The window is unresizable. |
Notes
The Window can resize if you assign true. It cannot resize if you assign false.
The default value is true.
Links for reference
None.