property Element.Resizable as Boolean
Gets or sets a value that indicates whether the user can resize the element.

TypeDescription
Boolean A Boolean expression that specifies whether the user can resize the element at runtime. 
By default, the Resizable property is True, which specifies that the user can resize the element at runtime. The Resizable property has no effect if the element's AutoSize property is True. The MinWidth/MaxWidth and MinHeight/MaxHeight properties specifies the min/max size of the element. The Height property specifies the height of the element. The Width property specifies the width of the element. Use the Width and Height properties to resize the element, while the AutoSize property is False. If AutoSize property is True, the Width and the Height can not be changed programmatically. The X and Y properties specifies the position of the element on the surface. Use the MoveTo method to move/resize the element to a new position / size. The Selectable property indicates whether the user can select the element. Use the AllowResizeObject property to specify whether the element can be resized at runtime.