Description
Returns true if the type is supported.
Syntax
| [Visual Basic .NET] |
|---|
Public Function IsTypeSupported( _
ByVal Type As AgECrdnAxesType _
) As Boolean
|
Parameters
See Also
Example
Determine if the specified axes type is supported.
| [C#] |
|---|
if (provider.Axes.Factory.IsTypeSupported(axesType))
{
IAgCrdnAxes axes = provider.Axes.Factory.Create(
"AxesName", string.Empty, axesType);
}
|
|
Determine if the specified axes type is supported.
| [Visual Basic .NET] |
|---|
If provider.Axes.Factory.IsTypeSupported(axesType) Then
Dim axes As IAgCrdnAxes = provider.Axes.Factory.Create("AxesName", String.Empty, axesType)
End If
|
|