Method |
Description |
---|
 AcDbTable::setGridVisibility (AcDb::Visibility, int, int) |
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. |
AcDbTable::setGridVisibility (int, int, AcDb::GridLineType, AcDb::Visibility) |
Sets the grid visibility of cell, row, or column.To specify cell, pass a valid row and column indices; to specify row, pass a valid row index and pass -1 as column index.To specify column, pass a valid column index and pass -1 as row index. To set same value in multiple grid line types combine multiple grid line types using OR and pass it.Returns Acad::eOk if successful; otherwise, returns an AutoCAD error status. |
 AcDbTable::setGridVisibility (int, int, short, AcDb::Visibility) |
This function sets the grid visibility of the specified edge of the cell.Returns Acad::eOk if successful. Otherwise, returns Acad::eInvalidInput. |