The new vertical coordinate, in pixels, where the vertical scrollbar is to be moved. If this value is out of the expected range, the toolkit sets the current value to the nearest one, means minimum or maximum one.
Example





In This Topic
GdPicture14.WPF Namespace / GdViewer Class / SetVerticalScrollBarPosition Method

SetVerticalScrollBarPosition Method

In This Topic
Sets the required position of the vertical scrollbar, in pixels, related to the document currently displayed in the GdViewer control. In other words, the vertical scrollbar moves to the newly specified coordinate on the vertical axis. This coordinate relates to the actual document area of the currently displayed page.

The Scroll event, respectively the PreviewScroll event, is raised if the scrollbar has moved.

Syntax
'Declaration
 
Public Sub SetVerticalScrollBarPosition( _
   ByVal NewPos As Double _
) 
public void SetVerticalScrollBarPosition( 
   double NewPos
)
public procedure SetVerticalScrollBarPosition( 
    NewPos: Double
); 
public function SetVerticalScrollBarPosition( 
   NewPos : double
);
public: void SetVerticalScrollBarPosition( 
   double NewPos
) 
public:
void SetVerticalScrollBarPosition( 
   double NewPos
) 

Parameters

NewPos
The new vertical coordinate, in pixels, where the vertical scrollbar is to be moved. If this value is out of the expected range, the toolkit sets the current value to the nearest one, means minimum or maximum one.
Remarks
Please note that if the newly specified value is out of the expected range, the toolkit sets the current value to the nearest one (means minimum or maximum one) without reporting any error. Otherwise, you can regularly apply the GetStat method to determine if this method has been successful.

Just to remind you, that this coordinate is 0-based with the origin being in the top left corner in the document pages area and it is related to the current page determined by the CurrentPage property.

Example
How to set the new position of the scrollbars.
'We assume that the GdViewer1 control has been properly integrated.
If GdViewer1.DisplayFromFile("") = GdPictureStatus.OK Then
            
    'The current position of both scrollbars after displaying the document
    'according to your currently defined GdViewer control settings.
    Dim x As Double = GdViewer1.GetHorizontalScrollBarPosition()
    Dim y As Double = GdViewer1.GetVerticalScrollBarPosition()
    MessageBox.Show("The scrollbars are set to this position: " + x + ", " + y, "GdViewer.SetVerticalScrollBarPosition")
            
    If (x <> 0) OrElse (y <> 0) Then
        'Setting the scrollbars to the required position.
        GdViewer1.SetHorizontalScrollBarPosition(0)
        GdViewer1.SetVerticalScrollBarPosition(0)
        MessageBox.Show("The scrollbars are now set to this position: 0, 0", "GdViewer.SetVerticalScrollBarPosition")
    End If
            
    'Do your other stuff here.
    GdViewer1.CloseDocument()
Else
    MessageBox.Show("This file can't be displayed. Status: " + GdViewer1.GetStat().ToString(), "GdViewer.SetVerticalScrollBarPosition")
End If
//We assume that the GdViewer1 control has been properly integrated.
if (GdViewer1.DisplayFromFile("") == GdPictureStatus.OK)
{
    //The current position of both scrollbars after displaying the document
    //according to your currently defined GdViewer control settings.
    double x = GdViewer1.GetHorizontalScrollBarPosition();
    double y = GdViewer1.GetVerticalScrollBarPosition();
    MessageBox.Show("The scrollbars are set to this position: " + x.ToString() + ", " + y.ToString(), "GdViewer.SetVerticalScrollBarPosition");
            
    if ((x != 0) || (y != 0))
    {
        //Setting the scrollbars to the required position.
        GdViewer1.SetHorizontalScrollBarPosition(0);
        GdViewer1.SetVerticalScrollBarPosition(0);
        MessageBox.Show("The scrollbars are now set to this position: 0, 0", "GdViewer.SetVerticalScrollBarPosition");
    }
            
    //Do your other stuff here.
    GdViewer1.CloseDocument();
}
else
    MessageBox.Show("This file can't be displayed. Status: " + GdViewer1.GetStat().ToString(), "GdViewer.SetVerticalScrollBarPosition");
See Also