This document is archived and information here might be outdated.  Recommended version.


IMapControlDefault.MoveLayerTo Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Controls > ESRI ArcGIS Controls > Interfaces > IM > IMapControlDefault Interface > IMapControlDefault.MoveLayerTo Method
ArcGIS Developer Help

IMapControlDefault.MoveLayerTo Method

Moves a layer within the Map's collection from its current index position to a new index position.

[Visual Basic .NET]
Public Sub MoveLayerTo ( _
    ByVal fromIndex As Integer, _
    ByVal toIndex As Integer _
)
[C#]
public void MoveLayerTo (
    int fromIndex,
    int toIndex
);
[C++]
HRESULT MoveLayerTo(
  long fromIndex,
  long toIndex
);
[C++]
Parameters
fromIndex [in]

fromIndex is a parameter of type long toIndex [in]
toIndex is a parameter of type long

Product Availability

Available with ArcGIS Engine.

Description

The Layer at the beginning or top of the collection with an index of 0 will be drawn last, whilst the Layer at the bottom of the collection will be drawn first.

Errors Returned

1023 800a03ff: The specified index is out of range

See Also

IMapControlDefault Interface