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






Windows & Linux

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

© 2018 Analytical Graphics, Inc. All Rights Reserved.