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


IReplicaFilterDescription.TableUsesQueryGeometry 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.TableUsesQueryGeometry Property
ArcGIS Developer Help

IReplicaFilterDescription.TableUsesQueryGeometry Property

Indicates if a spatial extent will be used when checking out a dataset.

[Visual Basic .NET]
Public Function get_TableUsesQueryGeometry ( _
    ByVal Index As Integer _
) As Boolean
[C#]
public bool get_TableUsesQueryGeometry (
    int Index
);
[C++]
HRESULT get_TableUsesQueryGeometry(
  long Index,
  Boolean* UseGeometry
);
[C++]
Parameters
Index [in]

Index is a parameter of type long UseGeometry [out, retval]
UseGeometry is a parameter of type bool*

Product Availability

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

Remarks

If the IReplicaFilterDescriptionEdit::Geometry property is set, then by default the geometry is applied to all featureclasses in the check-out or extraction to determine which rows to include. The geometry can be ignored on an individual featureclass basis using by setting IReplicaFilterDescriptionEdit::TableUsesQueryGeometry to false.

This property returns False if the dataset at the specified index has been set to ignore the geometry filter.

The IReplicaDescription::FindTable method can be used to return the index of a specific dataset. The IReplicaDescription::TableName and IReplicaDescription::TableNameCount properties can be used to cycle through all checked out datasets. 

See Also

IReplicaFilterDescription Interface