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