event Click ()
Fired when the user clicks on the control area.

TypeDescription
The Click event is fired when the user releases the left mouse button over the control. You can use the QueryContextMenu event to be notified when the user right clicks the control's view.  The Objects property specifies the collection of all or selected files/folders in the control. Use the Get method to update the Objects collection with all or selected files or folders, and then you can enumerate the files in the collection using the Count and Item properties.

Syntax for Click event, /NET version, on:

private void Click(object sender)
{
}

Private Sub Click(ByVal sender As System.Object) Handles Click
End Sub

Syntax for Click event, /COM version, on:

private void ClickEvent(object sender, EventArgs e)
{
}

void OnClick()
{
}

void __fastcall Click(TObject *Sender)
{
}

procedure Click(ASender: TObject; );
begin
end;

procedure ClickEvent(sender: System.Object; e: System.EventArgs);
begin
end;

begin event Click()
end event Click

Private Sub ClickEvent(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ClickEvent
End Sub

Private Sub Click()
End Sub

Private Sub Click()
End Sub

LPARAMETERS nop

PROCEDURE OnClick(oExShellView)
RETURN

Syntax for Click event, /COM version (others), on:

<SCRIPT EVENT="Click()" LANGUAGE="JScript">
</SCRIPT>

<SCRIPT LANGUAGE="VBScript">
Function Click()
End Function
</SCRIPT>

Procedure OnComClick 
	Forward Send OnComClick 
End_Procedure

METHOD OCX_Click() CLASS MainDialog
RETURN NIL

void onEvent_Click()
{
}

function Click as v ()
end function

function nativeObject_Click()
return

The following VB sample displays the file/folder being clicked:

Private Sub ExShellView1_Click()
    With ExShellView1
        .Objects.Get (SelectedItems Or AsDisplayed)
        With .Objects
            Dim i As Long
            For i = 0 To .Count - 1
                Debug.Print .Item(i).Path
            Next
        End With
    End With
End Sub