Remarks | Properties | Methods | Samples |
ED
|
not used
|
RT
|
avaliable
|
The "ArchiveVariables" object is a collection of all defined
"ArchiveVariable" objects.
This object is utilized by the "Archive" object, in order to access
the collection of "ArchiveVariable" objects.
Count | Parent |
Item | ItemById | ItemByIdEx |
Sub zenOn_ArchiveVariables(ByRef zArchive As Archive) 'Declarations Dim zArVars As ArchiveVariables Dim i As Integer 'Initialize zArVars with the variable collection of the passed archive Set zArVars = zArchive.ArchiveVariables 'For every variable within the collection... For i = 0 To zArVars.Count - 1 '... output the name of the variable Debug.Print i + 1 & ". Variable: " & zArVars.Item(i).Name Next i End Sub