Fired when the user double clicks an item.
Type | Description | |||
Shift as Integer | An integer that corresponds to the state of the SHIFT, CTRL, and ALT keys. | |||
X as OLE_XPOS_PIXELS | A single that specifies the current X location of the mouse pointer. The x values is always expressed in container coordinates. | |||
Y as OLE_YPOS_PIXELS | A single that specifies the current Y location of the mouse pointer. The y values is always expressed in container coordinates |
The DblClk event is fired whenever the user double clicks a file or a folder. Use the ExecuteContextCommand method to invoke a command from the file's context menu.
Syntax for DblClick event, /NET version, on:
private void DblClick(object sender) { } Private Sub DblClick(ByVal sender As System.Object) Handles DblClick End Sub |
private void DblClick(object sender, EventArgs e) { } void OnDblClick() { } void __fastcall DblClick(TObject *Sender) { } procedure DblClick(ASender: TObject; ); begin end; procedure DblClick(sender: System.Object; e: System.EventArgs); begin end; begin event DblClick() end event DblClick Private Sub DblClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DblClick End Sub Private Sub DblClick() End Sub Private Sub DblClick() End Sub LPARAMETERS nop PROCEDURE OnDblClick(oCascadeFile) RETURN |
<SCRIPT EVENT="DblClick()" LANGUAGE="JScript"> </SCRIPT> <SCRIPT LANGUAGE="VBScript"> Function DblClick() End Function </SCRIPT> Procedure OnComDblClick Forward Send OnComDblClick End_Procedure METHOD OCX_DblClick() CLASS MainDialog RETURN NIL void onEvent_DblClick() { } function DblClick as v () end function function nativeObject_DblClick() return |