Interface representing a command group in the command stack. Groups commands by name and provides maps for both global and local command lookups.

interface AcEdCommandGroup {
    commandsByGlobalName: Map<string, AcEdCommand>;
    commandsByLocalName: Map<string, AcEdCommand>;
    groupName: string;
}

Properties

commandsByGlobalName: Map<string, AcEdCommand>

Map of commands indexed by their global names

commandsByLocalName: Map<string, AcEdCommand>

Map of commands indexed by their local names

groupName: string

The name of the command group