Skip to main content
A newer version of this page is available. .

DynamicMiniMapBehavior.ZoomOffset Property

Gets or sets the mini map zoom level offset relative to the map control zoom level.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v19.1.dll

Declaration

[DefaultValue(-3)]
public double ZoomOffset { get; set; }

Property Value

Type Default Description
Double -3

A double value, specifying the offset.

Remarks

The following image demonstrates this property used with the default value.

MapControl_DynamicMiniMapBehavior_ZoomOffset

The following code shows how to use this property.


mapControl.MiniMap.Behavior = new DynamicMiniMapBehavior() { ZoomOffset = -4 };
See Also