Share

AcDbTable::getOverride

C++

AcDb::CellProperty getOverride(
    int nRow, 
    int nCol, 
    int nContent
) const;

Description

Gets the override in cell, row, column, or content.

Returns the override of cell, row, column, or content.

To specify content pass a valid row, column, and content indices.

To specify cell pass a valid row and column indices and pass -1 as content index.

To specify row pass a valid row index and pass -1 as column and content indices.

To specify column pass a valid column index and pass -1 as row and content indices.

Parameters

Parameters Description
nRow Input row index. This can be -1. See remarks.
nCol Input column index. This can be -1.
nContent Input content index. This can be -1.

Links

AcDbTable

Was this information helpful?