Hello.
I have two question:
1.
What should I do to enabled ScrollBars (both) always?
2.
Can I move page programmatically ?
I would create function on ClickMouse to move size (if page is largest then screen)
private void toolStripButton1_Click(object sender, EventArgs e)
{
if (this.pdfDocumentViewer1.IsDocumentLoaded)
{
this.pdfDocumentViewer1.EnableHandTool();
}
}
private void toolStripButton2_Click(object sender, EventArgs e)
{
if (this.pdfDocumentViewer1.IsDocumentLoaded)
{
this.pdfDocumentViewer1.EscapeHandTool();
}
}