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