Description
Removes a specified Plane.
Syntax
| [Visual Basic .NET] |
|---|
Public Sub Remove( _
ByVal PlaneName As String _
)
|
| [Managed C++] |
|---|
public: void Remove(
String __gc ^ PlaneName
);
|
| [Unmanaged C++] |
|---|
public: HRESULT Remove(
BSTR PlaneName
);
|
| [Java] |
|---|
public void remove(
String PlaneName
);
|
[Python - STK API ] |
|---|
def Remove(self, PlaneName:str) -> None:
|
Parameters
See Also
Example
Remove an existing plane with the specified name.
| [C#] |
|---|
// Check if the plane with specified name exists
if (provider.Planes.Contains("PlaneName"))
{
provider.Planes.Remove("PlaneName");
}
|
|
Remove an existing plane with the specified name.
| [Visual Basic .NET] |
|---|
' Check if the plane with specified name exists
If provider.Planes.Contains("PlaneName") Then
provider.Planes.Remove("PlaneName")
End If
|
|