|
|
|
SftMask.LockedDropDown Property |
Defines whether the calendar drop down button is disabled.
Syntax
VB.NET |
Boolean = object.LockedDropDown As Boolean |
||
VB |
Boolean = object.LockedDropDown As Boolean |
||
C#.NET |
bool Boolean = object.LockedDropDown; |
||
VC++ |
VARIANT_BOOL Boolean = object->LockedDropDown;
|
||
C |
HRESULT object->get_LockedDropDown(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.LockedDropDown : WordBool; |
||
VB.NET |
object.LockedDropDown = Boolean As Boolean |
||
VB |
object.LockedDropDown = Boolean As Boolean |
||
C#.NET |
bool object.LockedDropDown = Boolean; |
||
VC++ |
VARIANT_BOOL object->LockedDropDown = Boolean;
|
||
C |
HRESULT object->put_LockedDropDown(VARIANT_BOOL Boolean); |
||
Delphi |
object.LockedDropDown := Boolean : WordBool; |
object
A SftMask object.
Boolean
Defines whether the calendar drop down button is disabled.
Boolean |
Description |
True |
The drop down button is locked and cannot be clicked. |
False |
The drop down button can be clicked. |
Comments
The LockedDropDown property defines whether the calendar drop down button is disabled.
The EditStyle property controls the presence of the up/down buttons, the drop down button and the ellipse button.
When the Locked property is set, it also updates the LockedDropDown, LockedEllipse and LockedUpDown properties with the same Boolean value. The LockedDropDown, LockedEllipse and LockedUpDown properties can be set independently after setting the Locked property.