ArcObjects Library Reference (GeoDatabase)  

IReplicaDescription.IsPrivateTable Property

Indicates if a dataset is private or not.

[Visual Basic .NET]
Public Function get_IsPrivateTable ( _
    ByVal Index As Integer _
) As Boolean
[Visual Basic .NET]
Public Sub set_IsPrivateTable ( _
    ByVal Index As Integer, _
    ByVal IsPrivate As Boolean _
)
[C#]
public bool get_IsPrivateTable (
    int Index
);
[C#]
public void set_IsPrivateTable (
    int Index,
    bool IsPrivate
);
[C++]
HRESULT get_IsPrivateTable(
  long Index,
  VARIANT_BOOL* IsPrivate
);
[C++]
HRESULT put_IsPrivateTable(
  long Index,
  VARIANT_BOOL IsPrivate
);
[C++]

Parameters

Index [in]   Index is a parameter of type long IsPrivate [out, retval]   IsPrivate is a parameter of type VARIANT_BOOL Index [in]   Index is a parameter of type long IsPrivate [in]   IsPrivate is a parameter of type VARIANT_BOOL

Product Availability

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

Remarks

The IsPrivateTable property allows you to mark a checked out dataset as private. A private dataset is not included in the enumeration returned from the Ireplica::ReplicaDatasets method or displayed in the replica properties dialog in the user interface. However, changes to private datasets are checked in. This property is useful for custom applications that include application specific tables.

See Also

IReplicaDescription Interface