SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTree/NET 2.0 - Tree Control
Defines whether a size box (resize grip) is shown in the lower-right corner so the user can resize the control.
Get
| VB.NET | Boolean = object.SizeBox As Boolean |
| VB | Boolean = object.SizeBox As Boolean |
| C#.NET | bool Boolean = object.SizeBox; |
| VC++ | VARIANT_BOOL Boolean = object->SizeBox; VARIANT_BOOL Boolean = object->GetSizeBox(); |
| C | HRESULT object->get_SizeBox(VARIANT_BOOL* Boolean); |
Put
| VB.NET | object.SizeBox = Boolean As Boolean |
| VB | object.SizeBox = Boolean As Boolean |
| C#.NET | bool object.SizeBox = Boolean; |
| VC++ | VARIANT_BOOL object->SizeBox = Boolean; void object->PutSizeBox(VARIANT_BOOL Boolean); |
| C | HRESULT object->put_SizeBox(VARIANT_BOOL Boolean); |
object
Boolean
Defines whether a size box (resize grip) is shown in the lower-right corner so the user can resize the control.
| Boolean | Description |
|---|---|
| True | A size box is shown and the user can resize the control. |
| False | No size box is shown (the default). |
The SizeBox property defines whether a size box (resize grip) is shown in the lower-right corner so the user can resize the control.
The size box is only useful when the tree control is used as a stand-alone window, for example as a drop-down window the user can resize. When the tree control is embedded in a dialog or another window, its size is controlled by the parent window, so the size box cannot be used.
Use SizeBoxActive to determine whether the user is currently resizing the control.
See Also SftTree Object | Object Hierarchy
