ArchivesED

 

Remarks Properties Methods Samples

ED
avaliable
RT
not used

Remarks:Top

The "ArchivesED" object manages the collection of "ArchiveED" objects.

Properties:Top

Count Parent  

Methods:Top

CheckIn CheckOut CreateArchive
DelArchive Export Get
Import IsCheckedOut IsDifferent
IsLocked Item UndoCheckOut

Samples:Top

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