Description
Removes a specified Angle.
Syntax
| [Visual Basic .NET] |
|---|
Public Sub Remove( _
ByVal AngleName As String _
)
|
| [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
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
|
|