STK Vector Geometry ToolSend comments on this topic.
Remove Method (IAgCrdnPlaneGroup)
See Also
PlaneName
Specify a name of the plane to be removed.
Windows





Windows & Linux

Description

Removes a specified Plane.

Syntax

[Visual Basic .NET]
Public Sub Remove( _
    ByVal PlaneName As String _
)
[C#]
public void Remove(
    string PlaneName
);
[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

PlaneName
Specify a name of the plane to be removed.

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
© 2024 Analytical Graphics, Inc. All Rights Reserved.