AGI STK VGT 11 Send comments on this topic.
Remove Method (IAgCrdnAxesGroup)
See Also  Example
AxesName
Specify a name of the axes to be removed.





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

[Java]
public  remove(
String AxesName
);

[Unmanaged C++]
public: HRESULT Remove(
BSTR AxesName
);

Parameters

AxesName
Specify a name of the axes to be removed.

Example

Remove an existing axes with the specified name.
[C#] Copy Code
// 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] Copy Code
' Check if the axes with specified name exist
If provider.Axes.Contains("AxesName") Then
    provider.Axes.Remove("AxesName")
End If

See Also

© 2016 All Rights Reserved.

STK Programming Interface 11.0.1