Gets/sets a value that specifies content zoom mode of the control (automatic or manual).

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

Syntax

Visual Basic (Declaration)
<BrowsableAttribute(True)> _
<DefaultValueAttribute(ZoomMode.None)> _
Public Property ZoomMode As ZoomMode
C#
[BrowsableAttribute(true)]
[DefaultValueAttribute(ZoomMode.None)]
public ZoomMode ZoomMode { get; set; }
Visual C++
[BrowsableAttribute(true)]
[DefaultValueAttribute(ZoomMode::None)]
public:
property ZoomMode ZoomMode {
	ZoomMode get ();
	void set (ZoomMode value);
}

Property Value

ZoomMode enumeration member that specifies the zooming behavior.

Remarks

In manual zoom mode (i.e. if the value of this property is None) user can change the content zoom either by Zoom property or using some zooming navigator.

If automatic zoom (except ZoomControl) mode is used and you attempt to change Zoom value manually, ZoomMode property will be set to None.

Note: When you set some zooming navigator into the Navigator property, this property is reset to None.

See Also