

| Type | Description | |||
| Editors | An Editors object that holds the collection of Editor objects. |
The following sample adds a spin editor to a node:
With XMLGrid1
.BeginUpdate
With .Editors
With .Add("Spin")
.ButtonWidth = 18
.EditType = SpinType
.AddButton "A", 1
.AddButton "B", 1, RightAlignment
End With
End With
With .Nodes
With .Add("Spin", 1)
.Editor = "Spin"
End With
End With
.EndUpdate
End With