Description
Returns whether the specified type is supported.
Syntax
Parameters
See Also
Example
Determine if the specified calc scalar type is supported.
| [C#] |
|---|
// Check if the specified calc scalar type is supported.
if (provider.CalcScalars.Factory.IsTypeSupported(calcScalarType))
{
//Create a CalcScalar with the supported Type
IAgCrdnCalcScalar calcScalar = provider.CalcScalars.Factory.Create(
"MyCalcScalar", string.Empty,
calcScalarType);
}
|
|
Determine if the specified calc scalar type is supported.
| [Visual Basic .NET] |
|---|
' Check if the specified calc scalar type is supported.
If provider.CalcScalars.Factory.IsTypeSupported(calcScalarType) Then
'Create a CalcScalar with the supported Type
Dim calcScalar As IAgCrdnCalcScalar = provider.CalcScalars.Factory.Create("MyCalcScalar", String.Empty, calcScalarType)
End If
|
|