AcDbGroup::AcDbGroup

AcDbGroup(
    const ACHAR * grpDesc, 
    bool selectable = true
);
Parameters
Parameters 
Description 
const ACHAR * grpDesc 
Input null terminated string describing the group 
bool selectable = true 
Input Boolean value indicating whether the group is selectable or not 
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

 

Links