ArcObjects Library Reference (Carto)  

IFeatureCache2.AddFeatures Method

Fills the cache with features from the featureclass. Clip envelope may be null.

[Visual Basic .NET]
Public Sub AddFeatures ( _
    ByVal fclass As IFeatureClass, _
    ByVal Clip As IEnvelope _
)
[C#]
public void AddFeatures (
    IFeatureClass fclass,
    IEnvelope Clip
);
[C++]
HRESULT AddFeatures(
  IFeatureClass* fclass,
  IEnvelope* Clip
);
[C++]

Parameters

fclass [in]

  fclass is a parameter of type IFeatureClass

Clip [in]

  Clip is a parameter of type IEnvelope

Product Availability

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

Remarks

Adds the features in the specified features class to the cache.  Only features that fit within the intersection of the clip envelope and the cache's internal envelope (specified during initialization) will be added.

See Also

IFeatureCache2 Interface