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
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
|
|