Gets a collection of ImageOverlay objects currently contained by the Map;the order of the collection controls the order in which the image overlays are drawn by the ArcGIS Explorer application.

Namespace:  ESRI.ArcGISExplorer.Mapping

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public ImageOverlayOrderCollection ImageOverlayDrawingOrder { get; }
Visual Basic (Declaration)
Public ReadOnly Property ImageOverlayDrawingOrder As ImageOverlayOrderCollection

Field Value

An ImageOverlayOrderCollection populated with ImageOverlay objects currently contained by the Map. Returns an empty collection if no ImageOverlays are contained by the Map.

Remarks

Use this property to change the drawing order of ImageOverlay objects in the Map. You cannot change the contents of the collection directly; in order to add and remove items from the map use the appropriate methods on the ChildItems collection.

When an ImageOverlay object is added to the ChildItems collection, the object will be drawn on top of other image overlays in the map, at a draw index of 0.

The collection exposes several methods to change the drawing order of image overlays in the map: you can move a specified overlay up or down by a single position in the order, move the overlay to the top of the order (drawing above all other overlays in the map) or move the overlay to the bottom of the order (drawing underneath all other overlays in the map).

See Also