|
|
|
SftBoxDropDown.SizeBox Property |
Defines whether a sizing box is available.
Syntax
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;
|
||
C |
HRESULT object->get_SizeBox(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.SizeBox : WordBool; |
||
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;
|
||
C |
HRESULT object->put_SizeBox(VARIANT_BOOL Boolean); |
||
Delphi |
object.SizeBox := Boolean : WordBool; |
object
A SftBoxDropDown object.
Boolean
Defines whether a sizing box is available.
Boolean |
Description |
True |
A sizing box is available if the Scrollbars property is set to scrollSftBoxBothDis. |
False |
A sizing box is not available. |
Comments
The SizeBox property defines whether a sizing box is available.
The sizing box is available in the drop down portion of a drop down and a drop down list combo box. It can be used by the user to resize the drop down portion of the combo box.
A sizing box is only available if the Scrollbars property is set to scrollSftBoxBothDis.