STK Vector Geometry ToolSend comments on this topic.
Remove Method (IAgCrdnAxesGroup)
See Also
AxesName
Specify a name of the axes to be removed.
Windows





Windows & Linux

Description

Removes a specified Axes.

Syntax

[Visual Basic .NET]
Public Sub Remove( _
    ByVal AxesName As String _
)
[C#]
public void Remove(
    string AxesName
);
[Managed C++]
public: void Remove(
    String __gc ^ AxesName
);
[Unmanaged C++]
public: HRESULT Remove(
    BSTR AxesName
);
[Java]
public void remove(
    String AxesName
);
[Python - STK API ]
def Remove(self, AxesName:str) -> None:

Parameters

AxesName
Specify a name of the axes to be removed.

See Also

Example

Remove an existing axes with the specified name.
[C#]
// Check if the axes with specified name exist
if (provider.Axes.Contains("AxesName"))
{
    provider.Axes.Remove("AxesName");
}
Remove an existing axes with the specified name.
[Visual Basic .NET]
' Check if the axes with specified name exist
If provider.Axes.Contains("AxesName") Then
	provider.Axes.Remove("AxesName")
End If
© 2024 Analytical Graphics, Inc. All Rights Reserved.