Search
Table.GetText Method
See Also
 



Gets the text of the specifies cell.

 Syntax

VB6  Copy Code

Public Function GetText( _
    ByVal col As Long, _
    ByVal row As Long _
) As String

C++  Copy Code

public:
BSTR GetText (
    int col,
    int row
)

 Parameters

col
The column of a table cell whose text to return.
row
The row of a table cell whose text to return.

 Return Value

The text of the table cell.

 Remarks

Returns the text of the cell at the table - position specified by col and row arguments.

 See Also