Share

AcDbTable::alignment

C++

virtual AcDb::CellAlignment alignment(
    int row, 
    int col
) const;

Description

This function returns the alignment of the text or block in the specified cell of the table.

Possible cell alignment values are:

  • AcDb::kTopLeft
  • AcDb::kTopCenter
  • AcDb::kTopRight
  • AcDb::kMiddleLeft
  • AcDb::kMiddleCenter
  • AcDb::kMiddleRight
  • AcDb::kBottomLeft
  • AcDb::kBottomCenter
  • AcDb::kBottomRight

Parameters

Parameters Description
row Input integer specifying the zero-based row index for the cell
col Input integer specifying the zero-based column index for the cell

Links

AcDbTable

Was this information helpful?