Skip to main content

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

Initializes a new instance of the CopyingToClipboardEventArgsBase class.

Namespace: DevExpress.Xpf.Grid

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

Declaration

public CopyingToClipboardEventArgsBase(
    DataViewBase view,
    IEnumerable<int> rowHandles,
    bool copyHeader
)
Public Sub New(
    view As DataViewBase,
    rowHandles As IEnumerable(Of Integer),
    copyHeader As Boolean
)

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