Description
Returns true if the type is supported.
Syntax
Parameters
See Also
Example
Determine if the specified angle type is supported.
[C#] |
---|
// Check if the specified angle type is supported.
if (provider.Angles.Factory.IsTypeSupported(angleType))
{
//Create an Angle with the supported Type
IAgCrdnAngle angle = provider.Angles.Factory.Create(
"MyAngle", string.Empty,
angleType);
}
|
|
Determine if the specified angle type is supported.
[Visual Basic .NET] |
---|
' Check if the specified angle type is supported.
If provider.Angles.Factory.IsTypeSupported(angleType) Then
'Create an Angle with the supported Type
Dim angle As IAgCrdnAngle = provider.Angles.Factory.Create("MyAngle", String.Empty, angleType)
End If
|
|