GetCellAlignment Method (ITable) Send Feedback
See Also 
Alignment[out]
Justification and alignment of the text in the specified cell in this Table as defined in dsTableCellAlignment_e
Row
Index of the row of the cell in which to get the justification and alignment of the text (see Remarks)
Column
Index of the column of the cell in which to get the justification and alignment of the text (see Remarks)
Gets the justification and alignment of the text in the specified cell in this Table.

Syntax

Visual Basic 
Function GetCellAlignment( _
   ByVal Row As System.Integer, _
   ByVal Column As System.Integer _
) As dsTableCellAlignment_e
C# 
dsTableCellAlignment_e GetCellAlignment( 
   System.int Row,
   System.int Column
)
JavaScript 
GetCellAlignment( 
   Row : Number,
   Column : Number
) : String
COM native C++ 
HRESULT GetCellAlignment( 
   LONG Row,
   LONG Column,
   dsTableCellAlignment_e* Alignment
) 
C++ 
DSRESULT GetCellAlignment( 
   long Row,
   long Column,
   dsTableCellAlignment_e* Alignment
) 

Parameters

Row
Index of the row of the cell in which to get the justification and alignment of the text (see Remarks)
Column
Index of the column of the cell in which to get the justification and alignment of the text (see Remarks)
Alignment[out] or Return Value
Justification and alignment of the text in the specified cell in this Table as defined in dsTableCellAlignment_e

Remarks

To determine a valid index for the row or column:
Get the total number of... Using...
Rows ITable::TotalRowCount
Columns ITable::TotalColumnCount
 

See Also

Availability

DraftSight V1R6.0