Index or name of the "Interlocking" object within the
collection.
If the parameter is a numerical value, the object is searched by
its index (>= 0 and <= Count-1).
If it is an alphanumerical value, the object is searched by its
unique name.
ED
avaliable
RT
not used
Remarks
Returns the object "Interlocking" from the collection, which is
identified by the parameter vItem.
The parameter vItem can have two values:
Index: Access with an index mostly is used in combination with
the property Count to find out the position of the object in the
list.
Name: The interlocking can also be accessed with its unique
name.
Hint:
The returned object should always be checked on Nothing, for the
case that no object was found for the search criteria.
Sample:
Sub InterlockingsItem()
Dim zInterlockings As Interlockings 'Object from type InterlockingsDim zInterlocking As Interlocking 'Child object from type Interlockings'Fill the objectsSet zInterlockings = MyWorkspace.ActiveDocument.Interlockings
'Returns an interlocking out of the listSet zInterlocking = zInterlockings.Item("Interlocking 1")
'Rename the interlocking
zInterlocking.DynProperties("Name") = "My_Interlocking"
End Sub