CopyingToClipboardEventArgs(DataViewBase, IEnumerable<Int32>, Boolean) Constructor
Initializes a new instance of the CopyingToClipboardEventArgs class.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v23.1.dll
NuGet Package: DevExpress.Wpf.Grid.Core
Declaration
public CopyingToClipboardEventArgs(
DataViewBase view,
IEnumerable<int> rowHandles,
bool copyHeader
)
Parameters
Name | Type | Description |
---|---|---|
view | DataViewBase | A DataViewBase descendant that is the view that raised the event. |
rowHandles | IEnumerable<Int32> | An array of row handles that identifies rows whose values are about to be copied to the clipboard. This value is assigned to the CopyingToClipboardEventArgsBase.RowHandles property. |
copyHeader | Boolean | true to copy column headers; otherwise, false. |
See Also