GdPicture.NET.14.API
GdPicture14 Namespace / GdPictureTextExtraction Class / IsHeaderCell Method
The 0-based index of the detected table within the last extraction process. It must be a value between 0 and GdPictureTextExtraction.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 GdPictureTextExtraction.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 GdPictureTextExtraction.GetTableRowCount() - 1.





In This Topic
IsHeaderCell Method (GdPictureTextExtraction)
In This Topic
Specify whether if the cell's coordinate is located in the table's header.
Syntax
'Declaration
 
Public Function IsHeaderCell( _
   ByVal TableIdx As Integer, _
   ByVal ColummIdx As Integer, _
   ByVal RowIdx As Integer _
) As Boolean
public bool IsHeaderCell( 
   int TableIdx,
   int ColummIdx,
   int RowIdx
)
public function IsHeaderCell( 
    TableIdx: Integer;
    ColummIdx: Integer;
    RowIdx: Integer
): Boolean; 
public function IsHeaderCell( 
   TableIdx : int,
   ColummIdx : int,
   RowIdx : int
) : boolean;
public: bool IsHeaderCell( 
   int TableIdx,
   int ColummIdx,
   int RowIdx
) 
public:
bool IsHeaderCell( 
   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 GdPictureTextExtraction.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 GdPictureTextExtraction.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 GdPictureTextExtraction.GetTableRowCount() - 1.

Return Value

True if the specified cell is part of the header, false otherwise.

Please always use the GdPictureTextExtraction.GetStat method to determine if this method has been successful.

Remarks

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

See Also