Method |
Description |
---|
 AcDbTable::setGridLineWeight (AcDb::LineWeight, int, int) |
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. |
AcDbTable::setGridLineWeight (int, int, AcDb::GridLineType, AcDb::LineWeight) |
Sets the grid line weight in a 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 the same value in multiple grid line types combine multiple grid line types using the OR and pass it.Returns Acad::eOk if successful; otherwise, returns an AutoCAD error status. |
 AcDbTable::setGridLineWeight (int, int, short, AcDb::LineWeight) |
This function sets the grid lineweight of the specified edge of the cell.Returns Acad::eOk if successful. Otherwise, returns Acad::eInvalidInput. |