Share

CAdUiFileDialog::BeginEditorCommand

C++

void BeginEditorCommand();

Description

Call this method to indicate an AutoCAd interactive command is starting.

Example:

    BeginEditorCommand();
    if (DoMyInteractiveCommand())
        CompleteEditorCommand();
    else
        CancelEditorCommand();

Links

CAdUiFileDialog

Was this information helpful?