Skip to main content

DrawMapItemEventArgs.Fill Property

Gets or sets the color that is used to fill a map item when the MapControl.DrawMapItem event is fired.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v23.2.dll

NuGet Package: DevExpress.Win.Map

Declaration

public Color Fill { get; set; }

Property Value

Type Description
Color

A Color that specifies how to fill a map item.

Remarks

Use the Fill property to fill a map item when implementing the MapControl.DrawMapItem event.

Example

This example illustrates how to customize vector items when they are drawn on a map.

To do this, it’s necessary to handle the MapControl.DrawMapItem event and provide new values for the event arguments object.

using DevExpress.XtraMap;

namespace DrawMapItemExample {

    public class MapItemFactory : DefaultMapItemFactory {

        protected override void InitializeItem(MapItem item, object obj) {
            base.InitializeItem(item, obj);
            MapRectangle rect = item as MapRectangle;
            if(rect != null) {
                rect.Width = 1000;
                rect.Height = 1000;
            }
        }
    }
}
See Also