STK Vector Geometry ToolSend comments on this topic.
Remove Method (IAgCrdnAngleGroup)
See Also
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
);
[Unmanaged C++]
public: HRESULT Remove(
    BSTR AngleName
);
[Java]
public void remove(
    String AngleName
);
[Python - STK API ]
def Remove(self, AngleName:str) -> None:

Parameters

AngleName
Specify a name of an angle to be removed.

See Also

Example

Remove an existing angle with the specified name.
[C#]
// 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]
' Check if the vector with specified name exists
If provider.Angles.Contains("AngleName") Then
	provider.Angles.Remove("AngleName")
End If
© 2024 Analytical Graphics, Inc. All Rights Reserved.