Gets or sets the brush that specifies how the highlighted shape outline is painted.
Namespace:DevExpress.Xpf.Map
Assembly:DevExpress.Xpf.Map.v19.2.dll

Syntax
C# |
public Brush HighlightShapeStroke { get; set; }
|
VB |
Public Property HighlightShapeStroke As Brush
|
Property value
Type: Brush
A System.Windows.Media.Brush value that specifies how the highlighted shape outline is painted.

Remarks

Example
To load a shapefile to the map do the following.
- Create a ShapefileDataAdapter object and assign it to the Data property.
- Specify the ShapefileDataAdapter.FileUri property of the object.
MainWindow.xaml |
<dxm:VectorLayer x:Name="mapLayer" ShapeFill="Gray">
<dxm:ShapefileDataAdapter FileUri="Data/Countries.shp"/>
</dxm:VectorLayer>
|

See Also