GetTableCellText Method (GdPictureTextExtraction)
Returns the text content of a cell in a specified table.
'Declaration
Public Function GetTableCellText( _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
) As String
public string GetTableCellText(
int ,
int ,
int
)
public function GetTableCellText(
: Integer;
: Integer;
: Integer
): String;
public function GetTableCellText(
: int,
: int,
: int
) : String;
public: string* GetTableCellText(
int ,
int ,
int
)
public:
String^ GetTableCellText(
int ,
int ,
int
)
Parameters
- TableIdx
- The 0-based index of the detected table within the last extraction process. It must be a value between 0 and GetTableCount() - 1.
- ColummIdx
- The 0-based index of the cell's column in a detected table within the last extraction process. It must be a value between 0 and GetTableColumnCount() - 1.
- RowIdx
- The 0-based index of the cell's row in a detected table within the last extraction process. It must be a value between 0 and GetTableRowCount() - 1.
Return Value
The text content of the cell.