//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace ExtendedGrid.Microsoft.Windows.Controls { /// /// Used to specify which container to take out of edit mode. /// public enum DataGridEditingUnit { /// /// Targets a cell container. /// Cell, /// /// Targets a row container. /// Row } }