Share

AcDbTable::setTextHeight

C++

virtual ADESK_DEPRECATED Acad::ErrorStatus setTextHeight(
    double height, 
    int rowTypes = AcDb::kAllRows
);

Description

This function sets the text height 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
height Input text height
rowTypes Input row types

Links

AcDbTable

Was this information helpful?