GetCellTextHeight Method (ITable) Send Feedback
See Also 
Height[out]
Height of the text of the specified cell
Row
Index of the row of the cell whose text height to get (see Remarks)
Column
Index of the column of the cell whose text height to get (see Remarks)
Gets the height of the text of the specified cell in this Table.

Syntax

Visual Basic 
Function GetCellTextHeight( _
   ByVal Row As System.Integer, _
   ByVal Column As System.Integer _
) As System.Double
C# 
System.double GetCellTextHeight( 
   System.int Row,
   System.int Column
)
JavaScript 
GetCellTextHeight( 
   Row : Number,
   Column : Number
) : Number
COM native C++ 
HRESULT GetCellTextHeight( 
   LONG Row,
   LONG Column,
   DOUBLE* Height
) 
C++ 
DSRESULT GetCellTextHeight( 
   long Row,
   long Column,
   double* Height
) 

Parameters

Row
Index of the row of the cell whose text height to get (see Remarks)
Column
Index of the column of the cell whose text height to get (see Remarks)
Height[out] or Return Value
Height of the text of the specified cell

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