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


IReplicaFilterDescription.Geometry Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IR > IReplicaFilterDescription Interface > IReplicaFilterDescription.Geometry Property
ArcGIS Developer Help

IReplicaFilterDescription.Geometry Property

The geometry used to determine which features to extract or check out.

[Visual Basic .NET]
Public ReadOnly Property Geometry As IGeometry
[C#]
public IGeometry Geometry {get;}
[C++]
HRESULT get_Geometry(
  IGeometry** qGeometry
);
[C++]
Parameters
qGeometry [out, retval]

qGeometry is a parameter of type IGeometry**

Product Availability

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

Remarks

This property returns the shape that is used to determine which features are to be checked out. The SpatialRelation property returns how this shape is applied as a filter. For example, if the Geometry is a polygon and the SpatialRelation is esriSpatialRelIntersects, any features that intersect the polygon are checked out.

If a geometry is not used for the check-out, nothing is returned.

By default, the geometry is applied to all datasets in the replica description during a check out or extraction.

See Also

IReplicaFilterDescription Interface