Description
Returns true if the type is supported.
Syntax
Parameters
See Also
Example
Determine if the specified vector type is supported.
| [C#] | 
|---|
//Check if the specified vector type is supported.
if (provider.Vectors.Factory.IsTypeSupported(vectorType))
{
    // Create a custom vector.
    IAgCrdnVector vector = provider.Vectors.Factory.Create(
        "myVector", string.Empty, vectorType);
}
 |  
  | 
Determine if the specified vector type is supported.
| [Visual Basic .NET] | 
|---|
'Check if the specified vector type is supported.
If provider.Vectors.Factory.IsTypeSupported(vectorType) Then
	' Create a custom vector.
	Dim vector As IAgCrdnVector = provider.Vectors.Factory.Create("myVector", String.Empty, vectorType)
End If
 |  
  |