Skip to main content
A newer version of this page is available.

CopyingToClipboardEventArgsBase(DataViewBase, IEnumerable<Int32>, Boolean) Constructor

Initializes a new instance of the CopyingToClipboardEventArgsBase class.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v20.2.Core.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public CopyingToClipboardEventArgsBase(
    DataViewBase view,
    IEnumerable<int> rowHandles,
    bool copyHeader
)

Parameters

Name Type Description
view DataViewBase

A DataViewBase descendant that is the grid control’s View whose data is copied to the clipboard.

rowHandles IEnumerable<Int32>

An array of row handles that identify 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