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


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

IReplicaFilterDescriptionEdit.RowsType Property

Replica row type options.

[Visual Basic .NET]
Public Sub set_RowsType ( _
    ByVal Index As Integer, _
    ByVal A_2 As esriRowsType _
)
[C#]
public void set_RowsType (
    int Index,
    esriRowsType A_2
);
[C++]
HRESULT put_RowsType(
  long Index,
  esriRowsType 
);
[C++]
Parameters
Index [in]

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

Product Availability

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

Remarks

This property allows you to control, on an individual dataset level whether all data, only the schema or only data satisfying the other IReplicafilterDescriptionEdit properties will be checked out or extracted. The ICheckout::CheckoutSchema method can be used to check out schema for all datasets.

By default, FeatureClasses are set to esriRowsTypeFilter while tables return esriRowsTypeNone.

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