| File: System\Windows\Controls\DataGridClipboardCopyMode.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Controls { /// <summary> /// Defines modes that indicate how DataGrid content is copied to the Clipboard. /// </summary> public enum DataGridClipboardCopyMode { /// <summary> /// Copying to the Clipboard is disabled. /// </summary> None, /// <summary> /// The text values of selected cells can be copied to the Clipboard. Column header is not included. /// </summary> ExcludeHeader, /// <summary> /// The text values of selected cells can be copied to the Clipboard. Column header is included for columns that contain selected cells. /// </summary> IncludeHeader, } }