Defines modes that indicate how RadGridView content is copied to the Clipboard.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
C#
[Flags]
public enum GridViewClipboardCopyMode
Fields
Copy cells, header and footer.
C#
All = Cells | Header | Footer
Copy grid cells.
C#
Cells = 2
Copy cells only.
C#
Default = 2
Copy grid footer.
C#
Footer = 8
Copy grid header.
C#
Header = 4
Copying is disabled.
C#
None = 1
Will not copy columns with values that are all null or empty.
C#
SkipEmptyColumns = 32
Will not copy rows with values that are all null or empty.
C#
SkipEmptyRows = 16