Using the Process Analyst > Process Analyst for Developers > Automation Model > ICommandSystem.Remove [Method]

ICommandSystem.Remove [Method]

Removes the specified command.

Defined As

Parameters

commandId

[in] The ID of the command to be removed.

Calling Syntax

This example assumes there is a valid CommandSystem object as retrieved from a Process Analyst. (for example, VBA: ProcessAnalyst.CommandSystem).

[VBA]

Sub Example(CommandSystem As Object)
CommandSystem.Remove("MyCommand1")
End Sub

[Cicode]

FUNCTION Example(OBJECT hCommandSystem)
_ObjectCallMethod(hCommandSystem, "Remove", "MyCommand1");
END