TableCells.MergeColumns Method
|
This method merges a set of cells horizontally in the table.
Namespace:
Kofax.OmniPageCSDK.IproPlus
Assembly:
Kofax.OmniPageCSDK.IproPlus (in Kofax.OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntaxpublic void MergeColumns(
int Start,
int End,
[OptionalAttribute] int Row
)
Public Sub MergeColumns (
Start As Integer,
End As Integer,
<OptionalAttribute> Row As Integer
)
public:
void MergeColumns(
[InAttribute] int Start,
[InAttribute] int End,
[OptionalAttribute] [InAttribute] int Row
)
Parameters
- Start
- Type: System.Int32
- End
- Type: System.Int32
- Row (Optional)
- Type: System.Int32
Remarks
Start and End parameters specify the starting and ending columns. The Row is an optional numeric parameter.
If it is -1 or unspecified, the whole columns specified by the Start and End parameters are merged. Otherwise only the cells of the specified row are merged.
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