The 0-based index of the detected table within the last extraction process. It must be a value between 0 and GetTableCount() - 1.
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.
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.





In This Topic

GetTableCellText Method (GdPictureTextExtraction)

In This Topic
Returns the text content of a cell in a specified table.
Syntax
'Declaration

 

Public Function GetTableCellText( _

   ByVal TableIdx As Integer, _

   ByVal ColummIdx As Integer, _

   ByVal RowIdx As Integer _

) As String
public string GetTableCellText( 

   int TableIdx,

   int ColummIdx,

   int RowIdx

)
public function GetTableCellText( 

    TableIdx: Integer;

    ColummIdx: Integer;

    RowIdx: Integer

): String; 
public function GetTableCellText( 

   TableIdx : int,

   ColummIdx : int,

   RowIdx : int

) : String;
public: string* GetTableCellText( 

   int TableIdx,

   int ColummIdx,

   int RowIdx

) 
public:

String^ GetTableCellText( 

   int TableIdx,

   int ColummIdx,

   int RowIdx

) 

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.
Remarks

This method requires the KVP and Table Processing - Intelligent Redaction component to run.

See Also