CopyingToClipboardEventArgs(DataViewBase, IEnumerable<GridCell>, Boolean) Constructor
Initializes a new instance of the CopyingToClipboardEventArgs class.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v14.2.dll
Declaration
public CopyingToClipboardEventArgs(
DataViewBase view,
IEnumerable<GridCell> gridCells,
bool copyHeader
)
Public Sub New(
view As DataViewBase,
gridCells As IEnumerable(Of GridCell),
copyHeader As Boolean
)
Parameters
| Name | Type | Description |
|---|---|---|
| view | DataViewBase | A DataViewBase descendant that is the view that raised the event. |
| gridCells | IEnumerable<GridCell> | An array of cells whose values are about to be copied to the clipboard. This value is assigned to the CopyingToClipboardEventArgs.GridCells property. |
| copyHeader | Boolean | true to copy column headers; otherwise, false. |
See Also