Sic.Framework-Nanjing-Baishi/MECF.Framework.UI.Client/DataGridTransform/DataGrid/Microsoft/Windows/Controls/DataGridClipboardCopyMode.cs

29 lines
962 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
//---------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//---------------------------------------------------------------------------
namespace ExtendedGrid.Microsoft.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,
}
}