|
ED
|
avaliable
|
RT
|
not used
|
This method creates a limit at a datatype.
Sub CreateEdLimit() 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 the INT datatype from the list Set zVarType = zVarTypes.Item("INT") 'Creates a limit at the INT datatype zVarType.CreateEdLimit End Sub