AGI STK VGT 11 Send comments on this topic.
Remove Method (IAgCrdnSystemGroup)
See Also  Example
SystemName
Specify a name of an existing system.





Description

Removes a specified System.

Syntax

[Visual Basic .NET]
Public Sub Remove( _
   ByVal SystemName As String _
) 

[C#]
public void Remove(
string SystemName
);

[Managed C++]
public: void Remove(
String __gc ^ SystemName
);

[Java]
public  remove(
String SystemName
);

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

Parameters

SystemName
Specify a name of an existing system.

Example

Remove an existing system with the specified name.
[C#] Copy Code
// Check if the specified system exists. 
if (provider.Systems.Contains("SystemName")) 

    provider.Systems.Remove("SystemName"); 

 

Remove an existing system with the specified name.
[Visual Basic .NET] Copy Code
' Check if the specified system exists.
If provider.Systems.Contains("SystemName") Then
    provider.Systems.Remove("SystemName")
End If

See Also

© 2016 All Rights Reserved.

STK Programming Interface 11.0.1