Skip to main content
All docs
V19.1

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.v19.1.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