SetZoomFitViewer Method (GdViewer)
Fits the document currently displayed in the GdViewer control to the viewer area while keeping the aspect ratio.
This method sets the GdViewer.ZoomMode property to ViewerZoomMode.ZoomModeFitToViewer and refreshes the control as well.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.
How to change the current zoom mode.
'We assume that the GdViewer1 control has been properly integrated.
'Determine the current zoom mode.
MessageBox.Show("The current zoom mode is " + GdViewer1.ZoomMode.ToString() + ".", "GdViewer.SetZoomFitViewer")
'Set the required zoom mode. The viewer will refresh.
GdViewer1.SetZoomFitViewer()
'It is the same as assigning GdViewer1.ZoomMode = ViewerZoomMode.ZoomModeFitToViewer
//We assume that the GdViewer1 control has been properly integrated.
//Determine the current zoom mode.
MessageBox.Show("The current zoom mode is " + GdViewer1.ZoomMode.ToString()+ ".", "GdViewer.SetZoomFitViewer");
//Set the required zoom mode. The viewer will refresh.
GdViewer1.SetZoomFitViewer();
//It is the same as assigning GdViewer1.ZoomMode = ViewerZoomMode.ZoomModeFitToViewer;