STK Vector Geometry ToolSend comments on this topic.
Remove Method (IAgCrdnSystemGroup)
See Also
SystemName
Specify a name of an existing system.
Windows





Windows & Linux

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
);
[Unmanaged C++]
public: HRESULT Remove(
    BSTR SystemName
);
[Java]
public void remove(
    String SystemName
);
[Python - STK API ]
def Remove(self, SystemName:str) -> None:

Parameters

SystemName
Specify a name of an existing system.

See Also

Example

Remove an existing system with the specified name.
[C#]
// 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]
' Check if the specified system exists.
If provider.Systems.Contains("SystemName") Then
	provider.Systems.Remove("SystemName")
End If
© 2024 Analytical Graphics, Inc. All Rights Reserved.