Share

AcDbTable::isFormatEditable

C++

bool isFormatEditable(
    int nRow, 
    int nCol
) const;

Description

This function checks the cell state to determine if a cell format can be modified. Applications should use this function to determine if a cell is editable instead of calling cellState directly and checking the state since the semantics of an editable cell may change as new states are added.

Returns true if the format can be modified and false if not.

Parameters

Parameters Description
nRow Input row index. It should be more than or equal to 0 and less than the number of rows
nCol Input column index. It should be more than or equal to 0 and less than the number of columns

Links

AcDbTable

Was this information helpful?