GdPicturePDF.OcrPagesProgressEventHandler Delegate
In This Topic
Syntax
'Declaration
<GuidAttribute("98BF3A4E-53C6-346F-9035-20202BF5757A")>
Public Delegate Sub GdPicturePDF.OcrPagesProgressEventHandler( _
ByVal As GdPictureStatus, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByRef As Boolean _
)
[Guid("98BF3A4E-53C6-346F-9035-20202BF5757A")]
public delegate void GdPicturePDF.OcrPagesProgressEventHandler(
GdPictureStatus ,
int ,
int ,
int ,
ref bool
)
public delegate GdPicturePDF.OcrPagesProgressEventHandler(
: GdPictureStatus;
: Integer;
: Integer;
: Integer;
var : Boolean
);
GuidAttribute("98BF3A4E-53C6-346F-9035-20202BF5757A")
public delegate GdPicturePDF.OcrPagesProgressEventHandler(
: GdPictureStatus,
: int,
: int,
: int,
: boolean
)
[Guid("98BF3A4E-53C6-346F-9035-20202BF5757A")]
public: __gc __delegate void GdPicturePDF.OcrPagesProgressEventHandler(
GdPictureStatus ,
int ,
int ,
int ,
ref bool
)
[Guid("98BF3A4E-53C6-346F-9035-20202BF5757A")]
public delegate void GdPicturePDF.OcrPagesProgressEventHandler(
GdPictureStatus ,
int ,
int ,
int ,
bool%
)
Parameters
- Status
- A member of the GdPictureStatus enumeration. The resulting status of the processed page.
- PageNo
- The page number of the processed page.
- Processed
- The number of pages already processed.
- Count
- The number of pages to be processed.
- Cancel
- Cancellation parameter. Switching it to true permits to cancel the process on pending pages.
See Also