STK Vector Geometry ToolSend comments on this topic.
IsTypeSupported Method (IAgCrdnAxesFactory)
See Also
Type
Specify an axes type.
Windows





Windows & Linux

Description

Returns true if the type is supported.

Syntax

[Visual Basic .NET]
Public Function IsTypeSupported( _
    ByVal Type As AgECrdnAxesType _
) As Boolean
[C#]
public bool IsTypeSupported(
    AgECrdnAxesType Type
);
[Managed C++]
public: bool IsTypeSupported(
    AgECrdnAxesType Type
);
[Unmanaged C++]
public: HRESULT IsTypeSupported(
    AgECrdnAxesType Type,
    VARIANT_BOOL * pRetVal
);
[Java]
public bool isTypeSupported(
    AgECrdnAxesType Type
);
[Python - STK API ]
def IsTypeSupported(self, Type:"AgECrdnAxesType") -> bool:

Parameters

Type
Specify an axes type.

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
© 2024 Analytical Graphics, Inc. All Rights Reserved.