'Declaration
Public Function GetTableColumnRect( _ ByVal TableIdx As Integer, _ ByVal ColummIdx As Integer, _ ByRef Left As Integer, _ ByRef Top As Integer, _ ByRef Width As Integer, _ ByRef Height As Integer _ ) As GdPictureStatus
public GdPictureStatus GetTableColumnRect( int TableIdx, int ColummIdx, out int Left, out int Top, out int Width, out int Height )
public function GetTableColumnRect( TableIdx: Integer; ColummIdx: Integer; Out Left: Integer; Out Top: Integer; Out Width: Integer; Out Height: Integer ): GdPictureStatus;
public function GetTableColumnRect( TableIdx : int, ColummIdx : int, Left : int, Top : int, Width : int, Height : int ) : GdPictureStatus;
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.
- Left
- Returns the left x-coordinate of the column's bounding box, in pixels.
- Top
- Returns the top y-coordinate of the column's bounding box, in pixels.
- Width
- Returns the width of the column's bounding box, in pixels.
- Height
- Returns the width of the column's bounding box, in pixels.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.