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


ISnappingEnvironment.IgnoreIMSLayers Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Controls > ESRI ArcGIS Controls > Interfaces > IS > ISnappingEnvironment Interface > ISnappingEnvironment.IgnoreIMSLayers Property
ArcGIS Developer Help

ISnappingEnvironment.IgnoreIMSLayers Property

Ignores layers with slow response times.

[Visual Basic .NET]
Public Property IgnoreIMSLayers As Boolean
[C#]
public bool IgnoreIMSLayers {get; set;}
[C++]
HRESULT get_IgnoreIMSLayers(
  Boolean* flag
);
[C++]
HRESULT put_IgnoreIMSLayers(
  VARIANT_BOOL flag
);
[C++]
Parameters
flag [out, retval]

flag is a parameter of type bool* flag [in]
flag is a parameter of type bool

Product Availability

Available with ArcGIS Engine.

Remarks

The IgnoreIMSLayers setting excludes IMS feature service layers from participating in the snapping cache.  In most cases, the time required to build the snapping cache against IMS layers is not fast enough, so they are automatically excluded from the snapping cache.  In certain situations, the IMS layer response time is reasonable (such as an IMS service on an intranet) setting this property to false will include these layers in the snapping cache.  IgnoreIMSLayers is set to true by default.

See Also

ISnappingEnvironment Interface