AGI STK VGT 11 Send comments on this topic.
Remove Method (IAgCrdnPlaneGroup)
See Also  Example
PlaneName
Specify a name of the plane to be removed.





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
);

[Java]
public  remove(
String PlaneName
);

[Unmanaged C++]
public: HRESULT Remove(
BSTR PlaneName
);

Parameters

PlaneName
Specify a name of the plane to be removed.

Example

Remove an existing plane with the specified name.
[C#] Copy Code
// 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] Copy Code
' Check if the plane with specified name exists
If provider.Planes.Contains("PlaneName") Then
    provider.Planes.Remove("PlaneName")
End If

See Also

© 2016 All Rights Reserved.

STK Programming Interface 11.0.1