Description
Is the supplied statistic available for the provided element name?
Syntax
Parameters
See Also
Example
Is statistics available for data provider element
[C#] |
---|
IAgDataProvider dataProvider = satellite.DataProviders.GetDataPrvInfoFromPath("LLR State/Fixed") as IAgDataProvider;
if (dataProvider.IsStatisticAvailable(AgEStatistics.eMean, "Lat"))
{
// Calculate statistics from Data Set
}
|
|
Is statistics available for data provider element
[Visual Basic .NET] |
---|
Dim dataProvider As IAgDataProvider = TryCast(satellite.DataProviders.GetDataPrvInfoFromPath("LLR State/Fixed"), IAgDataProvider)
' Calculate statistics from Data Set
If dataProvider.IsStatisticAvailable(AgEStatistics.eMean, "Lat") Then
End If
|
|