Class HandwritingICROptions
Inherited Members
Namespace: pdftron.PDF
Assembly: PDFNet.dll
Syntax
public class HandwritingICROptions : OptionsBase
Constructors
HandwritingICROptions()
Declaration
public HandwritingICROptions()
Methods
AddIgnoreZonesForPage(RectCollection, int)
Adds an Ignore Zone to the IgnoreZonesForPage array. Optional list of page areas to be excluded from analysis. Zones should be provided as a collection of Rects paired with a page number. The Rects are then applied to the corresponding page. Rects are specified in User Space coordinates. If this is set, the specified areas will not be analyzed. If neither this nor InclusionZonesForPage is set, the entire page will be analyzed.
Declaration
public HandwritingICROptions AddIgnoreZonesForPage(RectCollection regions, int pageNum)
Parameters
| Type | Name | Description |
|---|---|---|
| RectCollection | regions | List of page areas to be excluded from analysis. |
| int | pageNum | The page number (1-indexed) to which the regions are applied. |
Returns
| Type | Description |
|---|---|
| HandwritingICROptions | This object, for call chaining. |
AddInclusionZonesForPage(RectCollection, int)
Declaration
public HandwritingICROptions AddInclusionZonesForPage(RectCollection regions, int pageNum)
Parameters
| Type | Name | Description |
|---|---|---|
| RectCollection | regions | |
| int | pageNum |
Returns
| Type | Description |
|---|---|
| HandwritingICROptions |
GetPages()
Gets the value Pages from the options object. Specifies a range of pages on which to perform handwriting extraction, such as "1-5". Open-ended ranges are supported, e.g., "3-". By default all pages are converted. The first page is page number 1.
Declaration
public string GetPages()
Returns
| Type | Description |
|---|---|
| string | Specifies a range of pages on which to perform handwriting extraction, such as "1-5". Open-ended ranges are supported, e.g., "3-". By default all pages are converted. The first page is page number 1. |
SetPages(string)
Sets the value for Pages in the options object. Specifies a range of pages on which to perform handwriting extraction, such as "1-5". Open-ended ranges are supported, e.g., "3-". By default all pages are converted. The first page is page number 1.
Declaration
public HandwritingICROptions SetPages(string value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | value | Specifies a range of pages on which to perform handwriting extraction, such as "1-5". Open-ended ranges are supported, e.g., "3-". By default all pages are converted. The first page is page number 1. |
Returns
| Type | Description |
|---|---|
| HandwritingICROptions | This object, for call chaining. |