//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace ExtendedGrid.Microsoft.Windows.Controls { /// /// Used to specify action to take out of edit mode. /// public enum DataGridEditAction { /// /// Cancel the changes. /// Cancel, /// /// Commit edited value. /// Commit } }