Skip to main content
All docs
V25.1
  • DevExpress v25.1 Update — Your Feedback Matters

    Our What's New in v25.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

    Take the survey Not interested

    MapRulerStyle Class

    Contains ruler style options.

    Namespace: DevExpress.XtraMap

    Assembly: DevExpress.XtraMap.v25.1.dll

    NuGet Package: DevExpress.Win.Map

    #Declaration

    public class MapRulerStyle :
        MapItemStyle

    The following members return MapRulerStyle objects:

    #Remarks

    The following example creates an area ruler and changes the ruler’s fill color, transparency, outline color, and outline width:

    image

    MapRulerStyle rulerStyle = new MapRulerStyle();
    rulerStyle.AreaTransparency = 170;
    rulerStyle.Fill = Color.CornflowerBlue;
    rulerStyle.Stroke = Color.DarkBlue;
    rulerStyle.StrokeWidth = 3;
    MapRuler ruler = mapControl1.Measurements.CreateRuler(RulerType.Area, 
                                                          new List<CoordPoint>() { new GeoPoint(10, 0), 
                                                                                   new GeoPoint(20, 0),
                                                                                   new GeoPoint(20, 10)}, 
                                                          rulerStyle);
    

    Related API members:

    Name

    Description

    CreateRuler(RulerType, IList<CoordPoint>, MapRulerStyle)

    Creates a ruler with the specified style.

    MapRulerStyle

    Contains ruler style options.

    AreaTransparency

    Gets or sets the area ruler’s transparency.

    Fill

    Gets or sets the ruler’s fill color. The fill color is also used to draw the outline border of area rulers and distance ruler borders.

    Stroke

    Gets or sets the ruler’s outline color.

    StrokeWidth

    Gets or sets the ruler’s outline width.

    See Also