Type | Description | |||
Boolean | A boolean expression that indicates whether the control supports single or multiple selection. |
The following sample displays the list of selected nodes:
With XMLGrid1 Dim i As Long For i = 0 To .SelectCount - 1 Debug.Print .SelectedNode(i).Name Next End With