UserDefinitions collection
This API applies to the ManagerApp and OptimizerApp objects.
The properties of the UserDefinitions collection API are:
A UserDefinitions collection contains 0, 1 or more UserDefinition objects.
An application's UserDefinitions property represents a collection of user definitions in the database.
A simple example of how to access this collection on the ManagerApp object using VB6:
Private Sub Form_Load()
Dim app As EHICOM.ManagerApp
Set app = New EHICOM.ManagerApp
MsgBox app.UserDefinitions.Count
End Sub