//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- namespace ExtendedGrid.Microsoft.Windows.Controls { /// /// Defines modes that indicate how DataGrid content is copied to the Clipboard. /// public enum DataGridClipboardCopyMode { /// /// Copying to the Clipboard is disabled. /// None, /// /// The text values of selected cells can be copied to the Clipboard. Column header is not included. /// ExcludeHeader, /// /// The text values of selected cells can be copied to the Clipboard. Column header is included for columns that contain selected cells. /// IncludeHeader, } }