|
ED
|
avaliable
|
RT
|
avaliable
|
With this method you can access datatypes out of the list.
Sub Item() Dim zVarTypes As VarTypes 'Object from type VarTypes Dim zVarType As VarType 'Child object from type VarTypes 'Fill the objects Set zVarTypes = MyWorkspace.ActiveDocument.VarTypes 'Read all settings from the "INT" datatype Set zVarType = zVarTypes.Item("INT") Debug.Print "Name of item = " & zVarType.Name End Sub