Remarks | Properties | Methods | Samples |
ED
|
avaliable
|
RT
|
not used
|
The "ArchivesED" object manages the collection of "ArchiveED" objects.
Count | Parent |
CheckIn | CheckOut | CreateArchive |
DelArchive | Export | Get |
Import | IsCheckedOut | IsDifferent |
IsLocked | Item | UndoCheckOut |
Sub zenOn_ArchivesED() 'Declarations Dim zArchivesED As ArchivesED Dim i As Integer 'Initialize zArchivesED with the archives of the current editor project Set zArchivesED = MyWorkspace.ActiveDocument.ArchivesED 'For every archive within the collection ... For i = 0 To zArchivesED.Count - 1 With zArchivesED.Item(i) '... output the identifier and the name Debug.Print .DynProperties("ShortName") & " - " & .DynProperties("LongName") End With Next i End Sub