Indicates if this object's custom layer order is honored.
[Visual Basic .NET] Public Property HonorLayerReordering As Boolean
[C#] public bool HonorLayerReordering {get; set;}
[C++]
HRESULT get_HonorLayerReordering(
VARIANT_BOOL* honorLayerReorder
);
[C++]
HRESULT put_HonorLayerReordering(
VARIANT_BOOL honorLayerReorder
);
[C++]Parameters
honorLayerReorder [out, retval] honorLayerReorder is a parameter of type VARIANT_BOOL honorLayerReorder [in] honorLayerReorder is a parameter of type VARIANT_BOOL
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
Remarks
When it is False, the order of LayerDescription objects in IMapDescription::LayerDescriptions array as well as any dynamically added LayerDesription object are ignored.
If you sent this value to True, then MapServer:
- honors the order of LayerDescription objects in LayerDescriptions array while drawing or identifying
- allows per-request addition of a new layer dynamically from registered workspace or removal of any existing layer.
Note: setting this value has no effect unless the IMapServerInfo::SupportsDynamicLayers is True by the author of that mapservice.
Warning: moving group layer may have unexpected result.