Description
Compute the data; time-dependent data providers require an interval and a time step. Start/Stop use DateFormat Dimension. StepTime uses Time Dimension.
Syntax
Parameters
Return Type
IAgDrResult.
See Also
Example
Execute a time dependent data provider and request all elements for the specified time interval
[C#] |
---|
IAgDataPrvTimeVar dpInfo = facility.DataProviders["Lighting AER"] as IAgDataPrvTimeVar;
IAgDrResult resInfo = dpInfo.Exec(
"1 Jan 2012 12:00:00.000",
"1 Jan 2012 12:00:20.000",
60.0);
|
|
Execute a time dependent data provider and request all elements for the specified time interval
[Visual Basic .NET] |
---|
Dim dpInfo As IAgDataPrvTimeVar = TryCast(facility.DataProviders("Lighting AER"), IAgDataPrvTimeVar)
Dim resInfo As IAgDrResult = dpInfo.Exec("1 Jan 2012 12:00:00.000", "1 Jan 2012 12:00:20.000", 60)
|
|