C++
virtual ADESK_DEPRECATED Acad::ErrorStatus setAutoScale( int row, int col, bool autoFit );
Description
This function sets the auto fit flag, which determines whether to automatically fit the block into the specified cell. If autoFit 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 Acad::eOk if successful. Otherwise, returns Acad::eInvalidInput.
This method is deprecated and may be removed in a future release.
Parameters
Parameters | Description |
---|---|
row | Input integer specifying the zero-based row index for the cell |
col | Input integer specifying the zero-based column index for the cell |
autoFit | Input Boolean indicating whether to auto fit the block at the specified cell |