'Declaration
Public Function IsHeaderCell( _ ByVal OCRResultID As String, _ ByVal TableIdx As Integer, _ ByVal ColummIdx As Integer, _ ByVal RowIdx As Integer _ ) As Boolean
public bool IsHeaderCell( string OCRResultID, int TableIdx, int ColummIdx, int RowIdx )
public function IsHeaderCell( OCRResultID: String; TableIdx: Integer; ColummIdx: Integer; RowIdx: Integer ): Boolean;
public function IsHeaderCell( OCRResultID : String, TableIdx : int, ColummIdx : int, RowIdx : int ) : boolean;
public: bool IsHeaderCell( string* OCRResultID, int TableIdx, int ColummIdx, int RowIdx )
public: bool IsHeaderCell( 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
True if the specified cell is part of the header, false otherwise.
Please always use the GdPictureOCR.GetStat method to determine if this method has been successful.