|
|
|
SftBoxDropDown.ProcessClick Property |
Defines the processing of mouse clicks outside of the control.
Syntax
VB.NET |
Boolean = object.ProcessClick As Boolean |
||
VB |
Boolean = object.ProcessClick As Boolean |
||
C#.NET |
bool Boolean = object.ProcessClick; |
||
VC++ |
VARIANT_BOOL Boolean = object->ProcessClick;
|
||
C |
HRESULT object->get_ProcessClick(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.ProcessClick : WordBool; |
||
VB.NET |
object.ProcessClick = Boolean As Boolean |
||
VB |
object.ProcessClick = Boolean As Boolean |
||
C#.NET |
bool object.ProcessClick = Boolean; |
||
VC++ |
VARIANT_BOOL object->ProcessClick = Boolean;
|
||
C |
HRESULT object->put_ProcessClick(VARIANT_BOOL Boolean); |
||
Delphi |
object.ProcessClick := Boolean : WordBool; |
object
A SftBoxDropDown object.
Boolean
Defines the processing of mouse clicks outside of the control.
Boolean |
Description |
True |
A mouse button click outside of the control will be processed after the drop down portion is hidden. |
False |
The drop down portion is hidden, but the mouse button click is not processed by the target. |
Comments
The ProcessClick property defines the processing of mouse clicks outside of the control.
If a mouse button is clicked outside of the control, the drop down portion is hidden. Depending on the settings of the ProcessClick property, the mouse click that occurred may either be suppressed or processed.
This property has no effect on a simple combo box.