windowsforms-devexpress-dot-xtramap-dot-mapeditor-a60a8dab.md
Specifies whether the map editor’s panel is displayed.
Namespace : DevExpress.XtraMap
Assembly : DevExpress.XtraMap.v25.2.dll
NuGet Package : DevExpress.Win.Map
[DefaultValue(false)]
public bool ShowEditorPanel { get; set; }
<DefaultValue(False)>
Public Property ShowEditorPanel As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true if the map editor should be visible; otherwise, false.
|
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
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
Me.mapControl1.Layers.Add(layer)
Me.mapControl1.MapEditor.ShowEditorPanel = True
AddHandler Me.mapControl1.MapEditor.MapItemEdited, AddressOf Me.MapEditor_MapItemEdited
See Also