

| Type | Description | |||
| Boolean | A boolean expression that indicates whether the control starts editing the focused node. |
The following sample starts editing a node as soon as user presses the F2 key:
Private Sub XMLGrid1_KeyDown(KeyCode As Integer, Shift As Integer)
With XMLGrid1
If .Editing = 0 Then
If KeyCode = vbKeyF2 Then
.Edit
End If
End If
End With
End Sub