VarType.DeleteEdLimit



DeleteEdLimit(vIndex As Variant) As Boolean

Parameters

vIndex As Variant
The limit can be selected via its name (string) or via a number (counting starts at 0).
ED
avaliable
RT
not used

Remarks

This method deletes a selected limit from a datatype.

Sample:


Sub DeleteEdLimit()

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.Some limits should be projected at the datatype
Set zVarType = zVarTypes.Item("INT")
'Delete "Limit[1]" at the INT datatype
zVarType.DeleteEdLimit ("Limit[1]")

End Sub

See Also

VarType