ArcObjects Library Reference (GeoDatabase)  

IDatasetEditEx.IsBeingEdited Method

True if the dataset is being edited, else returns the reason why it is not editable.

[Visual Basic .NET]
Public Sub IsBeingEdited ( _
    ByRef pIsBeingEdited As Boolean, _
    ByRef hrReason As Integer _
)
[C#]
public void IsBeingEdited (
    ref bool pIsBeingEdited,
    ref int hrReason
);
[C++]
HRESULT IsBeingEdited(
  VARIANT_BOOL* pIsBeingEdited,
  hrReason* hrReason
);
[C++]

Parameters

pIsBeingEdited [out]   pIsBeingEdited is a parameter of type VARIANT_BOOL hrReason [out]   hrReason is a parameter of type

Product Availability

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

Remarks

Once an edit session has been started on a workspace, the IsBeingEdited method on the IDatasetEditEx interface can be used to determine if a particular dataset is participating in the edit session, and if its not, what the reason is.

Possible reasons why a dataset may not participate include: the connected user has no privileges or permission to edit the dataset, the connected user is not licensed to edit this type of dataset, or the dataset is not versioned but a versioned edit session has been started (or vice versa).

See Also

IDatasetEditEx Interface