ArchiveFilterVariablesInfo(vIDs As Variant,Count As Long,vNames As Variant) As Boolean
Parameters
vIDs As Variant
"Variant" variable passed to the "ArchiveFilterVariablesInfo"
method, in order to return the IDs of the archive filter
variables.
Count As Long
"Variant" variable passed to the "ArchiveFilterVariablesInfo"
method, in order to return the amount of archive filter
variables.
vNames As Variant
"Variant" variable passed to the "ArchiveFilterVariablesInfo"
method, in order to return the names of the archive filter
variables.
ED
not used
RT
avaliable
Remarks
Returns information on the assigned archive filter
variables.
Following three parameters have to be passed:
Count: Returns the amount of archive filter
variables.
vIDs: Returns the IDs of the archive filter
variables.
vNames: Returns the names of the archive filter
variables.
Sample
Public Sub zenOn_ArchiveFilter_ArchiveFilterVariablesInfo(ByRef zArvFilter As ArchiveFilter)
'DeclarationsDim zCount As LongDim zIDs As VariantDim zNames As Variant'Initiate the information query
zArvFilter.ArchiveFilterVariablesInfo zCount, zIDs, zNames
'For every archive filter variable within the collection...For i = 0 To zCount - 1
'... output the variable count
Debug.Print i + 1 & ". Variable"
'... output the name
Debug.Print vbTab & "Name: " & zNames(i)
'... output the ID
Debug.Print vbTab & "ID" & vbTab & ": " & zIDs(i)
Next i
End Sub