Gets/sets the navigator control ID (i.e. value stored in the attribute id of the tag that inserts the control).

Namespace: Aurigma.GraphicsMill.AjaxControls
Assembly:   Aurigma.GraphicsMill.AjaxControls (in Aurigma.GraphicsMill.AjaxControls.dll)

Syntax

Visual Basic (Declaration)
<DefaultValueAttribute("")> _
<TypeConverterAttribute(GetType())> _
<BrowsableAttribute(True)> _
Public Property Navigator As String
C#
[DefaultValueAttribute("")]
[TypeConverterAttribute(typeof(NavigatorConverter))]
[BrowsableAttribute(true)]
public string Navigator { get; set; }
Visual C++
[DefaultValueAttribute(L"")]
[TypeConverterAttribute(typeof())]
[BrowsableAttribute(true)]
public:
property String^ Navigator {
	String^ get ();
	void set (String^ value);
}

Property Value

The value which contains an ID of the navigator control you need to attach.

Remarks

The following navigator controls are available:

  • ZoomInNavigator - left button clicks zoom the image in.
  • ZoomOutNavigator - left button clicks zoom the image out.
  • ZoomRectangleNavigator - user stretches the rectangle by mouse and when mouse button is released, it zooms selected rectangle in.
  • PanNavigator - when user presses the mouse button down and move the mouse, the image is panned until user releases the button.

See Also