|
ED
|
avaliable
|
RT
|
not used
|
Creates a new Interlocking an returns this new object.
Sub Interlockings() Dim zInterlockings As Interlockings 'Object from type Interlockings Dim zInterlocking As Interlocking 'Object from type Interlocking 'Fill the objects Set zInterlockings = MyWorkspace.ActiveDocument.Interlockings 'Creates an interlocking called "Interl_1" with an assignment Set zInterlocking = zInterlockings.Create("Interl_1", False) Debug.Print "Count = " & zInterlockings.Count End Sub