Back to Devexpress

ClipboardRowPastingEventArgs.PasteMode Property

windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-dot-clipboardrowpastingeventargs-cbea5c03.md

latest3.0 KB
Original Source

ClipboardRowPastingEventArgs.PasteMode Property

Gets or sets whether only valid rows or all rows are pasted to the control.

Namespace : DevExpress.XtraGrid.Views.Grid

Assembly : DevExpress.XtraGrid.v25.2.dll

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

Declaration

csharp
public RowPasteMode PasteMode { get; set; }
vb
Public Property PasteMode As RowPasteMode

Property Value

TypeDescription
RowPasteMode

A value that specifies whether only valid rows or all rows are pasted to the control.

|

Available values:

NameDescription
Default

The same value as OnlyValidRow.

| | OnlyValidRow |

Only valid rows are pasted. Invalid rows are skipped.

| | Force |

Forces the control to paste a row, even if the row contains invalid data.

|

Remarks

By default, only valid rows are allowed to be added to the target control. A valid row is the one that contains only valid values. Invalid rows are skipped. You can check the validity of rows and individual cells with the ClipboardRowPastingEventArgs.IsRowValid and ClipboardRowPastingEventArgs.IsValueValid methods.

To force the pasting of rows that are considered invalid, set the PasteMode property to Force.

Values of all rows are pasted using the ColumnView.SetRowCellValue method. See Modify and Validate Cell Values to learn more.

See Also

IsRowValid()

IsValueValid

GetValidValues()

GetInvalidValues()

ClipboardRowPastingEventArgs Class

ClipboardRowPastingEventArgs Members

DevExpress.XtraGrid.Views.Grid Namespace