Skip to main content

ClipboardNodePastingEventArgs.PasteMode Property

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

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

public RowPasteMode PasteMode { get; set; }

Property Value

Type Description
RowPasteMode

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

Available values:

Name Description
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 ClipboardNodePastingEventArgs.IsNodeValid and ClipboardNodePastingEventArgs.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 TreeList.SetRowCellValue method.

See Also