AGI STK VGT 11 Send comments on this topic.
Remove Method (IAgCrdnAngleGroup)
See Also  Example
AngleName
Specify a name of an angle to be removed.





Description

Removes a specified Angle.

Syntax

[Visual Basic .NET]
Public Sub Remove( _
   ByVal AngleName As String _
) 

[C#]
public void Remove(
string AngleName
);

[Managed C++]
public: void Remove(
String __gc ^ AngleName
);

[Java]
public  remove(
String AngleName
);

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

Parameters

AngleName
Specify a name of an angle to be removed.

Example

Remove an existing angle with the specified name.
[C#] Copy Code
// Check if the vector with specified name exists 
if (provider.Angles.Contains("AngleName")) 

    provider.Angles.Remove("AngleName"); 

 

Remove an existing angle with the specified name.
[Visual Basic .NET] Copy Code
' Check if the vector with specified name exists
If provider.Angles.Contains("AngleName") Then
    provider.Angles.Remove("AngleName")
End If

See Also

© 2016 All Rights Reserved.

STK Programming Interface 11.0.1