Created
October 5, 2009 02:12
-
-
Save dvhthomas/201764 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private bool _isSavedAction;... | |
/// <summary> | |
/// Only handle this so that a field can be set. This is to avoid | |
/// the issue where ArcMap fires OnSaveEdits AND OnStopEditing events | |
/// when the user clicks the Save Edits button. The boolean value | |
/// is set back to false when the OnStopEditing event is called. | |
/// </summary> | |
private void OnSaveEdits() | |
{ | |
_isSavedAction = true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment