|
|
|
SftButton.DropDownDblClick Event |
The drop down button is double-clicked.
Syntax
VB.NET |
Private Sub object_DropDownDblClick(ByVal sender As Object, ByVal e As EventArgumentType) Handles object.DropDownDblClick |
||
VB |
Private Sub object_DropDownDblClick() |
||
C#.NET |
void object_DropDownDblClick(object sender, EventArgumentType e); |
||
VC++ |
void OnDropDownDblClickobject(); |
||
C |
HRESULT OnDropDownDblClickobject(); |
||
Delphi |
procedure objectDropDownDblClick(Sender: TObject); |
object
A SftButton object.
Comments
The DropDownDblClick event occurs when the drop down button is double-clicked. Depending on the DropDownDownClick property, the event occurs as the mouse button is pressed or released.
A DropDownClick event always precedes the DropDownDblClick event.
The Click event occurs when the button is clicked.