BeginCommand Event

Triggered immediately after a command is issued, but before it completes.

See Also | Example

Signature

object.BeginCommand(CommandName)

object

Application
An object expression that evaluates to a valid container object. In this case, the only valid container is the application.

CommandName

String
The name of the command being issued.

Remarks

The BeginCommand event is triggered as soon as AutoCAD receives a request to issue a command. This request can come either interactively by a user through the AutoCAD user interface or programmatically. The BeginCommand event is followed by the EndCommand event after AutoCAD completes processing the command. If the user cancels out of the command, the EndCommand event will not be triggered.

The BeginCommand event will be fired for any basic AutoCAD command, or any command registered on the AutoCAD command stack via an ObjectARX application, or the Visual LISP vlax-add-cmd function.

This event will not be fired for LISP functions defined as external subroutines via the LISP vl-acad-defun function. These functions are not exposed to the command stack, even though you execute them from the AutoCAD command line. Instead, these functions will trigger the BeginLISP and EndLISP events. If you need LISP commands to be recognized when they execute you will need to use the Visual LISP vlax-add-cmd function to register the command correctly to the AutoCAD command stack.

If you undefine an AutoCAD command and then redefine it via the LISP vl-acad-defun function, the BeginCommand event may not be triggered until an actual AutoCAD command is called (command "_.LINE" ...) for instance.

AutoCAD commands are stored in groups in the command stack. One instance of the command stack is created per AutoCAD session. This stack consists of the native AutoCAD commands, as well as any custom commands you add to it.

No events will be fired while a modal dialog is being displayed.

 

   Comments?