Type | Description | |||
CommandName as String | A String expression that indicates the name of the command being executed. |
The following VB sample displays the object's Properties dialog, when the user presses the F2 key:
Private Sub ExFolderView1_KeyDown(KeyCode As Integer, Shift As Integer) If (KeyCode = vbKeyF2) Then ExFolderView1.SelectedFolder.InvokeCommand ("Properties") End If End Sub