'Declaration
Public Function GetTableCellText( _ ByVal OCRResultID As String, _ ByVal TableIdx As Integer, _ ByVal ColummIdx As Integer, _ ByVal RowIdx As Integer _ ) As String
public string GetTableCellText( string OCRResultID, int TableIdx, int ColummIdx, int RowIdx )
public function GetTableCellText( OCRResultID: String; TableIdx: Integer; ColummIdx: Integer; RowIdx: Integer ): String;
public function GetTableCellText( OCRResultID : String, TableIdx : int, ColummIdx : int, RowIdx : int ) : String;
public: string* GetTableCellText( string* OCRResultID, int TableIdx, int ColummIdx, int RowIdx )
public: String^ GetTableCellText( String^ OCRResultID, int TableIdx, int ColummIdx, int RowIdx )
Parameters
- OCRResultID
- The unique result identifier of the executed OCR process obtained by the GdPictureOCR.RunOCR method.
- TableIdx
- The 0-based index of the detected table within the specified OCR result. It must be a value between 0 and GdPictureOCR.GetTableCount(OCRResultID) - 1.
- ColummIdx
- The 0-based index of the cell's column in a detected table within the specified OCR result. It must be a value between 0 and GdPictureOCR.GetTableColumnCount(OCRResultID) - 1.
- RowIdx
- The 0-based index of the cell's row in a detected table within the specified OCR result. It must be a value between 0 and GdPictureOCR.GetTableRowCount(OCRResultID) - 1.
Return Value
The text content of the cell.