Share

AcDbTable::setGridVisibility

C++

virtual ADESK_DEPRECATED Acad::ErrorStatus setGridVisibility(
    AcDb::Visibility visible, 
    int nBorders, 
    int nRows
);

Description

This function sets the grid visibility 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
visible Input visibility
nBorders Input grid line type for which to set the visibility
nRows Input row type for which to set the visibility

Links

AcDbTable

Was this information helpful?