Click or drag to resize

BaseMiniMapIsMovingViewboxEnabled Property

Gets or sets a nullable Boolean that specifies if moving the Viewbox by mouse is enabled.

Namespace:  Ab2d.Controls
Assembly:  Ab2d.Controls.ZoomPanel (in Ab2d.Controls.ZoomPanel.dll) Version: 5.2.6631.1040
Syntax
C#
public Nullable<bool> IsMovingViewboxEnabled { get; set; }

Property Value

Type: NullableBoolean
Remarks

If moving Viewbox by mouse is enabled, that when user moves the mouse over the shown area in MiniMap the area can be moved around with dragging the mouse around. This also changes the Viewbox property. In ViewboxExMiniMap and ZoomPanelMiniMap this also changes the area shown by the associated ViewboxEx or ZoomPanel.

If IsMovingViewboxEnabled is set to true that moving Viewbox by mouse is enabled. This is the default value in BaseMiniMap.

If IsMovingViewboxEnabled is set to false that moving Viewbox by mouse is disabled.

Setting IsMovingViewboxEnabled to null is only used in ZoomPanelMiniMap. There null value means that moving Viewbox by mouse is enabled or disabled based on the associated ZoomPanel control. If ZoomPanel is enabled and its ZoomMode is not set to None, than moving Viewbox is enabled. In ZoomPanelMiniMap this is the default value of IsMovingViewboxEnabled.

See Also