ArcObjects Library Reference (Geometry)  

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(
  VARIANT_BOOL* IsRecycling
);
[C++]

Parameters

IsRecycling [out, retval]   IsRecycling is a parameter of type VARIANT_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