ArcObjects Library Reference (GeoDatabase)  

IReplicaFilterDescriptionEdit.TableUsesSelection Property

Indicates if a selection will be used when checking out a dataset.

[Visual Basic .NET]
Public Sub set_TableUsesSelection ( _
    ByVal Index As Integer, _
    ByVal A_2 As Boolean _
)
[C#]
public void set_TableUsesSelection (
    int Index,
    bool A_2
);
[C++]
HRESULT put_TableUsesSelection(
  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 dataset to ignore the SelectionSet specified by the TableSelection property. 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