A member of the GdPictureStatus enumeration. The resulting status of the processed page.
The page number of the processed page.
The number of pages already processed.
The number of pages to be processed.
Cancellation parameter. Switching it to true permits to cancel the process on pending pages.





In This Topic
GdPicture14 Namespace / GdPicturePDF.OcrPagesProgressEventHandler Delegate

GdPicturePDF.OcrPagesProgressEventHandler Delegate

In This Topic
Syntax
'Declaration
 
<GuidAttribute("98BF3A4E-53C6-346F-9035-20202BF5757A")>
Public Delegate Sub GdPicturePDF.OcrPagesProgressEventHandler( _
   ByVal Status As GdPictureStatus, _
   ByVal PageNo As Integer, _
   ByVal Processed As Integer, _
   ByVal Count As Integer, _
   ByRef Cancel As Boolean _
) 
[Guid("98BF3A4E-53C6-346F-9035-20202BF5757A")]
public delegate void GdPicturePDF.OcrPagesProgressEventHandler( 
   GdPictureStatus Status,
   int PageNo,
   int Processed,
   int Count,
   ref bool Cancel
)
public delegate GdPicturePDF.OcrPagesProgressEventHandler( 
    Status: GdPictureStatus;
    PageNo: Integer;
    Processed: Integer;
    Count: Integer;
   var  Cancel: Boolean
);
GuidAttribute("98BF3A4E-53C6-346F-9035-20202BF5757A")
public delegate GdPicturePDF.OcrPagesProgressEventHandler( 
   Status : GdPictureStatus,
   PageNo : int,
   Processed : int,
   Count : int,
   Cancel : boolean
)
[Guid("98BF3A4E-53C6-346F-9035-20202BF5757A")]
public: __gc __delegate void GdPicturePDF.OcrPagesProgressEventHandler( 
   GdPictureStatus Status,
   int PageNo,
   int Processed,
   int Count,
   ref bool Cancel
)
[Guid("98BF3A4E-53C6-346F-9035-20202BF5757A")]
public delegate void GdPicturePDF.OcrPagesProgressEventHandler( 
   GdPictureStatus Status,
   int PageNo,
   int Processed,
   int Count,
   bool% Cancel
)

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