Ghostscript.NET.Viewer.GhostscriptViewer.ShowPage C# (CSharp) Method

ShowPage() public method

public ShowPage ( int pageNumber ) : void
pageNumber int
return void
        public void ShowPage(int pageNumber)
        {
            this.ShowPage(pageNumber, false);
        }

Same methods

GhostscriptViewer::ShowPage ( int pageNumber, bool refresh ) : void

Usage Example

コード例 #1
0
 private void tbPageNumber_TextChanged(object sender, EventArgs e)
 {
     try
     {
         if (tbPageNumber.Text.Length > 0)
         {
             _viewer.ShowPage(int.Parse(tbPageNumber.Text));
         }
     }
     catch (Exception ex) { }
 }
All Usage Examples Of Ghostscript.NET.Viewer.GhostscriptViewer::ShowPage