Share

AcDbTable::isAutoScale

C++

bool isAutoScale(
    int row, 
    int col, 
    int nContent
) const;

Description

This function returns the status of the mBlockAutoFit flag at the specified cell in the table. If this flag is true, the AcDbTable object automatically computes the scale and insertion point for the block content in order to fit it into the specified cell.

Returns true if the block at the specified index is auto-scaled.

Parameters

Parameters Description
row Input row index. It should be more than or equal to 0 and less than the number of rows
col Input column index. It should be more than or equal to 0 and less than the number of columns
nContent Input content index. It should be more than or equal to 0 and less than the number of contents

Links

AcDbTable

Was this information helpful?