Share

AcDbGroup::AcDbGroup

C++

AcDbGroup(
    const ACHAR * grpDesc, 
    bool selectable = true
);

Description

Initializes the group object to use a copy of the grpDesc string as the description. If selectable == true, then when any entity within the group is selected, all entities in the group are selected. If selectable == false, then entities within the group are treated as individuals during the selection process.

grpDesc must not be NULL.

Parameters

Parameters Description
grpDesc Input null terminated string describing the group
selectable Input Boolean value indicating whether the group is selectable or not

Links

AcDbGroup

Was this information helpful?