Share

acedPopCommandDirectory

C++

ACAD_PORT int acedPopCommandDirectory(
    const ACHAR* cmdDirName
);

File

aced.h

Description

This function is a "C" code wrapper for:

acedRegCmds->popGroupToTop(cmdDirName);

The ObjectARX command stack is searched to find a command group with the name cmdDirName. If such a group is found, then it is popped to the top of the command stack and the function returns 1 to indicate success. If no group is found, then 0 is returned to indicate failure.

Parameters

Parameters Description
cmdDirName Input command group

Was this information helpful?