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


IEnumSegment.IsRecycling Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IE > IEnumSegment Interface > IEnumSegment.IsRecycling Property
ArcGIS Developer Help

IEnumSegment.IsRecycling Property

Indicates if this enumerator re-uses the same segment each time next is called.

[Visual Basic .NET]
Public ReadOnly Property IsRecycling As Boolean
[C#]
public bool IsRecycling {get;}
[C++]
HRESULT get_IsRecycling(
  Boolean* IsRecycling
);
[C++]
Parameters
IsRecycling [out, retval]

IsRecycling is a parameter of type bool*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

The IsRecycling method indicates whether or not modifications to segments in the segment collection are seen or not by the enumerator. If 'True' then modifications to segments will not be seen by the enumerator, if 'False' then the enumerator is always up to date and represents the current state of the segment collection.

Remarks

Note: The IsRecycling state is contolled by the system and cannot be directly changed by users.

See Also

IEnumSegment Interface