Share

AcDbTable::enableMergeAll

C++

Acad::ErrorStatus enableMergeAll(
    int nRow, 
    int nCol, 
    bool bEnable
);

Description

Enables or disables the merge all flag in row or column

Returns Acad::eOk if successful; otherwise, returns an AutoCAD error status.

To specify row pass a valid row index and pass -1 as column index; to specify column pass a valid column index and pass -1 as row index. This flag is not applicable for cell.

Parameters

Parameters Description
nRow Input row index. This can be -1. See remarks.
nCol Input column index. This can be -1. See remarks.
bEnable Input true to enable, false to disable

Links

AcDbTable

Was this information helpful?