Skip to main content
A newer version of this page is available. .
All docs
V21.1

MapLineCap.Length Property

Specifies the map line cap length.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v21.1.dll

NuGet Package: DevExpress.Wpf.Map

Declaration

public double Length { get; set; }

Property Value

Type Description
Double

The value that specifies the map line cap length.

Remarks

Use the Length property to define the length of the default cap arrow or a cap custom shape. The arrow is displayed when the Geometry property is not set.

The following example specifies a custom end cap shape, shows the default arrow for the MapLine start cap, and sets their dimensions:

Map Line Caps

<dxm:MapLine Point1="-3, -10" Point2="-10, -28"  Stroke="Blue">
  <dxm:MapLine.StrokeStyle>
    <dxm:StrokeStyle Thickness="2"/>
  </dxm:MapLine.StrokeStyle>
  <dxm:MapLine.StartLineCap >
    <dxm:MapLineCap Visible="True" Length="30" Width="15"/>
  </dxm:MapLine.StartLineCap>
  <dxm:MapLine.EndLineCap>
    <dxm:MapLineCap  Visible="True" Length="30" Width="15">
      <dxm:MapLineCap.Geometry>
        <PathGeometry Figures="M 0, 0 L 0,-0.5 L 0.5,-0.5 L 0.5, 0.5 L 0,0.5 Z "/>
      </dxm:MapLineCap.Geometry>
    </dxm:MapLineCap>
  </dxm:MapLine.EndLineCap>
</dxm:MapLine>
See Also