PageChanged
|
PageChanged Event |
Description
Occurs when the Page has changed.
Syntax
public event PageChanged; |
Parameters
iCurrent
current position of the file
Example
[C# Syntax] PDFDocument doc = _pdf.Document; if (doc != null) } |
[Visual Basic Syntax] Dim doc As PDFDocument doc = _pdfviewer.Document If Not IsNothing(doc) Then Me.Text = doc.FileName + " [" + _pdfviewer.CurrentPage.ToString + "/" + doc.PageCount.ToString + "]" End If End Sub |