Remarks | Properties | Methods | Samples |
ED
|
avaliable
|
RT
|
not used
|
With the interlockings object you have the opportunity to create and edit interlockings in the list.
Count | Parent |
Create | Export | Import |
Item |
Sub Interlockings() Dim zInterlockings As Interlockings 'Object from type Interlockings Dim zInterlocking As Interlocking 'Child object from type Interlockings 'Fill the objects Set zInterlockings = MyWorkspace.ActiveDocument.Interlockings 'Creates an interlocking called "Interlocking" with an assignment Set zInterlocking = zInterlockings.Create("Interlocking", False) Call InterlockingsItem End Sub Sub InterlockingsItem() Dim zInterlockings As Interlockings 'Object from type Interlockings Dim zInterlocking As Interlocking 'Child object from type Interlockings 'Fill the objects Set zInterlockings = MyWorkspace.ActiveDocument.Interlockings 'Returns an interlocking out of the list Set zInterlocking = zInterlockings.Item("Interlocking") 'Rename the interlocking zInterlocking.DynProperties("Name") = "My_Interlocking" End Sub