wpf-devexpress-dot-xpf-dot-map-dot-mapelementoptions.md
Gets or sets a value that specifies whether the Map UI element is visible.
Namespace : DevExpress.Xpf.Map
Assembly : DevExpress.Xpf.Map.v25.2.dll
NuGet Package : DevExpress.Wpf.Map
public bool Visible { get; set; }
Public Property Visible As Boolean
| Type | Description |
|---|---|
| Boolean |
true if the UI element is visible; otherwise false.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the Visible 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.
wpf-map-load-vector-cartesian-data/CS/MapLesson2/MainWindow.xaml#L18
<dxm:MapControl.CoordinatesPanelOptions>
<dxm:CoordinatesPanelOptions Visible="False"/>
</dxm:MapControl.CoordinatesPanelOptions>
wpf-map-connect-to-openstreetmap/CS/MainWindow.xaml#L22
<dxm:MapControl.ScalePanelOptions>
<dxm:ScalePanelOptions HorizontalAlignment="Right" VerticalAlignment="Bottom" Visible="False" />
</dxm:MapControl.ScalePanelOptions>
wpf-map-search-with-azure-map-search-service/CS/DXMapExample/MainWindow.xaml#L23
<dxm:MapControl.CoordinatesPanelOptions>
<dxm:CoordinatesPanelOptions Visible="False" />
</dxm:MapControl.CoordinatesPanelOptions>
See Also