Description
Removes a specified element.
Syntax
| [Visual Basic .NET] |
|---|
Public Sub Remove( _
ByVal EventName As String _
)
|
| [Managed C++] |
|---|
public: void Remove(
String __gc ^ EventName
);
|
| [Unmanaged C++] |
|---|
public: HRESULT Remove(
BSTR EventName
);
|
| [Java] |
|---|
public void remove(
String EventName
);
|
[Python - STK API ] |
|---|
def Remove(self, EventName:str) -> None:
|
Parameters
See Also
Example
Remove an existing event interval list with the specified name.
| [C#] |
|---|
// Check if the event interval list with specified name exists
if (provider.EventIntervalLists.Contains("EventIntervalListName"))
{
provider.EventIntervalLists.Remove("EventIntervalListName");
}
|
|
Remove an existing event interval list with the specified name.
| [Visual Basic .NET] |
|---|
' Check if the event interval list with specified name exists
If provider.EventIntervalLists.Contains("EventIntervalListName") Then
provider.EventIntervalLists.Remove("EventIntervalListName")
End If
|
|