Description
returns the time variable data provider specified by the data provider path.
Syntax
[Visual Basic .NET] |
---|
Public Function GetDataPrvTimeVarFromPath( _
ByVal DataProviderPath As String _
) As
|
Parameters
See Also
Example
Coarse grain approach to retrieving a time var data provider
[C#] |
---|
IAgDataPrvTimeVar dp = facility.DataProviders.GetDataPrvTimeVarFromPath("Lighting AER");
IAgDrResult result = dp.Exec(
"1 Jan 2012 12:00:00.000",
"1 Jan 2012 12:00:20.000",
60.0);
|
|
Coarse grain approach to retrieving a time var data provider
[Visual Basic .NET] |
---|
Dim dp As IAgDataPrvTimeVar = facility.DataProviders.GetDataPrvTimeVarFromPath("Lighting AER")
Dim result As IAgDrResult = dp.Exec("1 Jan 2012 12:00:00.000", "1 Jan 2012 12:00:20.000", 60)
|
|