ArchiveFilterVariablesInfoEx(vIDs As Variant,vCalculations As Variant,Count As Long,vProjects As Variant,vNames As Variant) As Boolean
Parameters
vIDs As Variant
"Variant" variable passed to the "ArchiveFilterVariablesInfoEx"
method, in order to return the IDs of the archive filter
variables.
vCalculations As Variant
"Variant" variable passed to the "ArchiveFilterVariablesInfoEx"
method, in order to return the calculation mode, if it is a
following archive.
Count As Long
"Variant" variable passed to the "ArchiveFilterVariablesInfoEx"
method, in order to return the amount of archive filter
variables.
vProjects As Variant
"Variant" variable passed to the "ArchiveFilterVariablesInfoEx"
method, in order to return the project name.
vNames As Variant
"Variant" variable passed to the "ArchiveFilterVariablesInfoEx"
method, in order to return the names of the archive filter
variables.
ED
not used
RT
avaliable
Remarks
Like the "ArchiveFilterVariablesInfo" method, this command
returns information on the assigned archive filter variables.
Additionally it will also return information on the project name
and the utilized calculation mode, if it is a following
archive.
Following five 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.
vProjects: Returns the project name.
vCalculations: Returns the calculation mode, if it is a
following archive.
Sample
Public Sub zenOn_ArchiveFilter_ArchiveFilterVariablesInfoEx(ByRef zArvFilter As ArchiveFilter)
'DeclarationsDim zCount As LongDim zIDs As VariantDim zNames As VariantDim zProjects As VariantDim zCalculations As Variant'Initiate the information query
zArvFilter.ArchiveFilterVariablesInfoEx zCount, zIDs, zNames, zProjects, zCalculations
'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: " & zIDs(i)
'... output the project name
Debug.Print vbTab & "Project: " & zProjects(i)
'... output the calculation mode
Debug.Print vbTab & "Calculation mode: " & zCalculations(i)
Next i
End Sub