Back to Devexpress

MapEditor.ShowEditorPanel Property

windowsforms-devexpress-dot-xtramap-dot-mapeditor-a60a8dab.md

latest2.6 KB
Original Source

MapEditor.ShowEditorPanel Property

Specifies whether the map editor’s panel is displayed.

Namespace : DevExpress.XtraMap

Assembly : DevExpress.XtraMap.v25.2.dll

NuGet Package : DevExpress.Win.Map

Declaration

csharp
[DefaultValue(false)]
public bool ShowEditorPanel { get; set; }
vb
<DefaultValue(False)>
Public Property ShowEditorPanel As Boolean

Property Value

TypeDefaultDescription
Booleanfalse

true if the map editor should be visible; otherwise, false.

|

Remarks

Use the MapControl.MapEditor property to access the map editor settings.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ShowEditorPanel property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-map-load-data-from-a-sql-geometry-data-source/CS/SqlGeometry/Form1.cs#L28

csharp
mapControl1.Layers.Add(layer);
mapControl1.MapEditor.ShowEditorPanel = true;
mapControl1.MapEditor.MapItemEdited += MapEditor_MapItemEdited;

winforms-map-load-data-from-a-sql-geometry-data-source/VB/SqlGeometry/Form1.vb#L27

vb
Me.mapControl1.Layers.Add(layer)
Me.mapControl1.MapEditor.ShowEditorPanel = True
AddHandler Me.mapControl1.MapEditor.MapItemEdited, AddressOf Me.MapEditor_MapItemEdited

See Also

MapEditor Class

MapEditor Members

DevExpress.XtraMap Namespace