Description
Removes a specified System.
Syntax
[Visual Basic .NET] |
---|
Public Sub Remove( _
ByVal SystemName As String _
)
|
[Managed C++] |
---|
public: void Remove(
String __gc ^ SystemName
);
|
[Unmanaged C++] |
---|
public: HRESULT Remove(
BSTR SystemName
);
|
[Python - STK API ] |
---|
def Remove(self, SystemName:str) -> None:
|
Parameters
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
|
|