TableCells.MergeRows Method
|
This method merges a set of cells vertically in the table.
Namespace:
Kofax.OmniPageCSDK.IproPlus
Assembly:
Kofax.OmniPageCSDK.IproPlus (in Kofax.OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntaxpublic void MergeRows(
int Start,
int End,
[OptionalAttribute] int Column
)
Public Sub MergeRows (
Start As Integer,
End As Integer,
<OptionalAttribute> Column As Integer
)
public:
void MergeRows(
[InAttribute] int Start,
[InAttribute] int End,
[OptionalAttribute] [InAttribute] int Column
)
Parameters
- Start
- Type: System.Int32
- End
- Type: System.Int32
- Column (Optional)
- Type: System.Int32
Remarks
Start and End parameters specify the starting and ending rows. The Column is an optional numeric parameter. If it is -1 or unspecified,
the whole rows specified by the Start and End parameters are merged. Otherwise only the cells of the specified column are processed.
If this method is called,and the parent of the collection is an OCRZone object, a trappable error occurs.
Otherwise the Modified property of the ascending Document object is set to True.
See Also