ArcObjects Library Reference (GeoDatabase)  

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

Parameters

Index [in]   Index is a parameter of type long UseGeometry [out, retval]   UseGeometry is a parameter of type VARIANT_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