Description
Returns true if the type is supported.
Syntax
Parameters
See Also
Example
Determine if the specified plane type is supported.
[C#] |
---|
// Check if the specified plane type is supported.
if (provider.Planes.Factory.IsTypeSupported(planeType))
{
IAgCrdnPlane p = provider.Planes.Factory.Create(
"PlaneName", string.Empty,
planeType);
}
|
|
Determine if the specified plane type is supported.
[Visual Basic .NET] |
---|
' Check if the specified plane type is supported.
If provider.Planes.Factory.IsTypeSupported(planeType) Then
Dim p As IAgCrdnPlane = provider.Planes.Factory.Create("PlaneName", String.Empty, planeType)
End If
|
|