Share

AcDbTable::setAutoScale

C++

Acad::ErrorStatus setAutoScale(
    int row, 
    int col, 
    int nContent, 
    bool autoFit
);

Description

Sets the auto scale flag for the block at the specified content index.

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

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.
autofit Input true to enable to auto scale, false to disable it

Links

AcDbTable

Was this information helpful?