ArcObjects Library Reference (GeoDatabase)  

IReplicaFilterDescriptionEdit.TableUsesQueryGeometry Property

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

[Visual Basic .NET]
Public Sub set_TableUsesQueryGeometry ( _
    ByVal Index As Integer, _
    ByVal A_2 As Boolean _
)
[C#]
public void set_TableUsesQueryGeometry (
    int Index,
    bool A_2
);
[C++]
HRESULT put_TableUsesQueryGeometry(
  long Index,
  VARIANT_BOOL 
);
[C++]

Parameters

Index [in]   Index is a parameter of type long [in]    is a parameter of type VARIANT_BOOL

Product Availability

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

Remarks

Set this property to false if you want a specific FeatureClass to ignore the shape set for the Geometry property during a check out or extraction. By default, the geometry is applied to all FeatureClasses. This property is very useful when writing custom applications which allow the user to control check outs and extractions.

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

IReplicaFilterDescriptionEdit Interface