Share

AcDbTable::setTextStyle

C++

virtual ADESK_DEPRECATED Acad::ErrorStatus setTextStyle(
    const AcDbObjectId& id, 
    int rowTypes = AcDb::kAllRows
);

Description

This function sets the table object to use the AcDbTextStyleTableRecord specified by id for the specified row types. Different row types can be OR'd.

The possible row type values are AcDb::kDataRow, AcDb::kTitleRow, and AcDb::kHeaderRow. If no row type is specified, this function sets all the possible row types.

Returns Acad::eOk if successful. Otherwise, returns Acad::eInvalidInput.

This method is deprecated and may be removed in a future release.

Parameters

Parameters Description
id Input AcDbTextStyleTableRecord object ID
rowTypes Input row types for which to set the text style

Links

AcDbTable

Was this information helpful?