GetVarExtensions - method of object PmTrend
Description:
Returns an array of all data extensions (
ExtTrend objects) registered into
PmTrend object (all trends of this trend group).
Syntax:
GetVarExtensions As Array
Calling:
aDataExt = oTrend.GetVarExtensions()
Example:
Obtains an array of references to all registered
ExtTrend objects of the
PmTrend object
"/Trend" with following listig of identifiers of each trend into the
INFO system.
VBScriptSelect and copy to clipboard
Dim i, a, n
Set a = pMe.Pm("/Trend").GetVarExtensions()
n = UBound(a)
For i = 0 To n
Pm.Debug a(i).TrendId
Next