Share

AcDbTable::setGridLineWeight

C++

virtual ADESK_DEPRECATED Acad::ErrorStatus setGridLineWeight(
    AcDb::LineWeight lwt, 
    int nBorders, 
    int nRows
);

Description

This function sets the lineweight for a given grid line type and row type of the table object. Different grid line and row types can be combined.

The possible values of the grid line type are AcDb::kHorzTop, AcDb::kHorzInside, AcDb::kHorzBottom, AcDb::kVertLeft, AcDb::kVertInside, and AcDb::kVertRight.

The possible values of the row type are AcDb::kDataRow, AcDb::kTitleRow, and AcDb::kHeaderRow.

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

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

Parameters

Parameters Description
lwt Input lineweight value
nBorders Input grid line types for which to set the lineweight
nRows Input row types for which to set the lineweight

Links

AcDbTable

Was this information helpful?