Defines modes that indicate how content from the Clipboard is pasted into the RadGridView.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
[Flags]
public enum GridViewClipboardPasteMode
Fields
If pasting only one cell from the Clipboard, RadGridView will try to paste it to each selected cell.
AllSelectedCells = 32
If pasting one or more items from the Clipboard, RadGridView will try to paste it to each selected row.
AllSelectedRows = 128
Paste into cells.
Cells = 2
Paste into cells.
Default = 2
If pasting one or more items from the Clipboard, RadGridView will try to create new row for them.
InsertNewRows = 256
Pasting is disabled.
None = 1
When pasting, if the Clipboard data contains empty cells, RadGridView cells that correspond to them should be cleared.
OverwriteWithEmptyValues = 4
Skips the first line from the Clipboard data. Useful if the first line is a header row.
SkipFirstLine = 8
Will not paste values in a GridViewColumn if its IsVisible property is set to false.
SkipHiddenColumns = 64
Skips the last line from the Clipboard data. Useful if the last line is a footer row.
SkipLastLine = 16