SetNavigator specifies a IEViewer component which works as navigator of current image.

A navigator shows a selection that controls the zoom and scroll of the main control.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void SetNavigator(
	IEViewer viewer,
	NavigatorOptions options
)
Public Sub SetNavigator ( _
	viewer As IEViewer, _
	options As NavigatorOptions _
)
public:
void SetNavigator(
	IEViewer^ viewer, 
	NavigatorOptions options
)

Parameters

viewer
IEViewer
The navigator for this image.
options
NavigatorOptions
Specifies some navigator options.

Examples

CopyC#
ieViewer1.Image.SetNavigator(ieViewer2, NavigatorOptions.MouseWheelZoom | NavigatorOptions.MarkOuter);

See Also