Skip to main content
A newer version of this page is available.
All docs
V18.2

ClipboardRowPastingEventArgs(GridPasteRowValues, IEnumerable<GridColumn>, Object[], Int32) Constructor

Initializes a new instance of the ClipboardRowPastingEventArgs class with the specified settings.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

public ClipboardRowPastingEventArgs(
    GridPasteRowValues pasteRow,
    IEnumerable<GridColumn> gridColumns,
    object[] originalValues,
    int rowHandle
)

Parameters

Name Type Description
pasteRow DevExpress.XtraGrid.Views.Printing.GridPasteRowValues

An object used to initialize the ClipboardRowPastingEventArgs.Values property.

gridColumns IEnumerable<GridColumn>

The columns whose values are about to be pasted.

originalValues Object[]

An object used to initialize the ClipboardRowPastingEventArgs.OriginalValues property.

rowHandle Int32

An object used to initialize the ClipboardRowPastingEventArgs.RowHandle property.

See Also