Skip to main content

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

Initializes a new instance of the ClipboardRowPastingEventArgs class.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

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

Parameters

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

A dictionary that contains values that will be pasted to the grid.

gridColumns IEnumerable<GridColumn>

A collection of grid columns.

originalValues Object[]

A collection of original values in the clipboard.

rowHandle Int32

A row handle that identifies the row being updated.

dataRowCountCore Int32

A value that specifies the number of rows that contain data to process (without column and band header rows).

rowCountCore Int32

A value that specifies the total number of rows to process (with column and band header rows).

See Also