TableGetTextΒΆ

TableGetText returns a matrix of cell text.

smText = TableGetText(hTable)
smText = TableGetText(hTable, rvSel)

Return Value

smText is a string matrix with the cell text. If the function was invoked without parameters the string matrix contains the text of all cells otherwise the matrix contains the cell text of the specified cell range.

Parameters

hTable

Identifies the table object.

rvSel

rvSel is a vector with four elements specifying a range of rows and columns:

Element Description
rvSel[1] Left column of selection
rvSel[2] Top row of selection
rvSel[3] Right column of selection
rvSel[4] Bottom row of selection

The column and row numbering starts with 1. Left is smaller than right and top is smaller than bottom.

id-965990