ArcObjects Library Reference (Editor)  

IEditor.HasEdits Method

Indicates whether edits have been made during the session.

[Visual Basic .NET]
Public Function HasEdits ( _
) As Boolean
[C#]
public bool HasEdits (
);

Product Availability

Available with ArcGIS Desktop.

Remarks

This property reports whether or not any edits have been made in the current edit session. For example, if this property returns False, then StopEditing can be called and passed the False parameter automatically; you do not have to ask the user if they want to save their edits because you know there are none.

 If Not pEditor.HasEdits Then

pEditor.StopEditing False
Else
'
'Code to prompt for Save Changes (Yes/No)
'
End If

See Also

IEditor Interface