|
ED
|
avaliable
|
RT
|
not used
|
With this method an own created datatype can be deleted.
Sub DeleteType() 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 'Delete an own created datatype called "own_simple" zVarTypes.DeleteType ("own_simple") End Sub