Delegate PDFViewCurrentPageDelegate
A prototype for a delegate that will be called whenever current page number changes.
Assembly: PDFNet.dll
Syntax
public delegate void PDFViewCurrentPageDelegate(int current_page, int num_pages, object obj);
Parameters
Type |
Name |
Description |
System.Int32 |
current_page |
the current page
|
System.Int32 |
num_pages |
total number of pages in the document
|
System.Object |
obj |
|
Constructors
PDFViewCurrentPageDelegate(Object, IntPtr)
Declaration
public PDFViewCurrentPageDelegate(object A_0, IntPtr A_1)
Parameters
Type |
Name |
Description |
System.Object |
A_0 |
|
System.IntPtr |
A_1 |
|
Methods
BeginInvoke(Int32, Int32, Object, AsyncCallback, Object)
Declaration
public IAsyncResult BeginInvoke(int current_page, int num_pages, object obj, AsyncCallback callback, object obj)
Parameters
Type |
Name |
Description |
System.Int32 |
current_page |
|
System.Int32 |
num_pages |
|
System.Object |
obj |
|
System.AsyncCallback |
callback |
|
System.Object |
obj |
|
Returns
Type |
Description |
System.IAsyncResult |
|
EndInvoke(IAsyncResult)
Declaration
public void EndInvoke(IAsyncResult result)
Parameters
Type |
Name |
Description |
System.IAsyncResult |
result |
|
Invoke(Int32, Int32, Object)
Declaration
public void Invoke(int current_page, int num_pages, object obj)
Parameters
Type |
Name |
Description |
System.Int32 |
current_page |
|
System.Int32 |
num_pages |
|
System.Object |
obj |
|