Read-only
About Cal Sets

EnumerateCalSets Method


Description

Returns an array of Cal Set names being stored on the PNA.

 VB Syntax

value = calMgr.EnumerateCalSets

Variable

(Type) - Description

value

(variant) - Variable to store the returned Cal Set names

calMgr

(object) - A CalManager object

Return Type

VARIANT array

Default

Not Applicable

Example

Dim pna
set pna=CreateObject("AgilentPNA835x.Application")

Dim catalog
catalog=pna.getcalmanager.EnumerateCalSets
for i=lbound(catalog) to Ubound(catalog)
wscript.echo catalog(i)
next

C++ Syntax

HRESULT EnumerateCalSets(VARIANT* names);

Interface

ICalManager4