![]() | Type | Description | ||
| EditTypeEnum | An EditTypeEnum expression that specifies the type of the editor. |

The following VB sample adds an editor of drop down list type:
The following VC sample adds an editor of drop down list type:
The following VC sample adds an Exontrol.ComboBox ActiveX control:
The following VB sample adds a Forms.ComboBox ActiveX control:
With Record1
.BeginUpdate
With .Add("ActiveX", EXRECORDLibCtl.UserEditorType)
.UserEditor "Forms.ComboBox.1", ""
With .UserEditorObject()
.AddItem "Item 1"
.AddItem "Item 2"
End With
End With
.EndUpdate
End With