Back to Devexpress

MeasurementEditMode Class

wpf-devexpress-dot-xpf-dot-map-12034875.md

latest2.6 KB
Original Source

MeasurementEditMode Class

A measurement mode that allows users to change map rulers.

Namespace : DevExpress.Xpf.Map

Assembly : DevExpress.Xpf.Map.v25.2.dll

NuGet Package : DevExpress.Wpf.Map

Declaration

csharp
public class MeasurementEditMode :
    MeasurementModeBase
vb
Public Class MeasurementEditMode
    Inherits MeasurementModeBase

Remarks

The Map Control activates Edit mode after a ruler is added to the map. You can also enable Edit mode in XAML as follows:

xaml
<dxm:MapControl.Measurements>
  <dxm:Measurements>
      <dxm:Measurements.Mode>
          <dxm:MeasurementEditMode/>
      </dxm:Measurements.Mode>
  </dxm:Measurements>
</dxm:MapControl.Measurements>

Use the SetEditModeCommand to enable Edit mode at runtime.

You can also specify the Measurements.Mode property in code as follows:

csharp
mapControl1.Measurements.Mode = new MeasurementEditMode();
vb
mapControl1.Measurements.Mode = New MeasurementEditMode()

The following actions are available in Edit mode:

|

Action

|

Description

| | --- | --- | |

Add a ruler point.

|

Click the position on the ruler where you wish to add a point.

| |

Change the ruler polyline.

|

Click and drag the point to a new location.

| |

Delete a ruler point.

|

Double-click the ruler point.

|

The image below shows how to change a distance ruler:

Inheritance

Object DispatcherObject DependencyObject Freezable MapDependencyObject MeasurementModeBase MeasurementEditMode

See Also

MeasurementEditMode Members

DevExpress.Xpf.Map Namespace