Skip to main content

ClipboardNodePastingEventArgs.IsNodeValid() Method

Returns whether pasted values can be accepted by target columns. Both the pasted values and target columns are specified by the ClipboardNodePastingEventArgs.Values dictionary.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

public bool IsNodeValid()

Returns

Type Description
Boolean

true if the pasted values can be accepted by target columns; otherwise, false.

Remarks

The IsNodeValid method performs a data compatibility test by iterating through the ClipboardNodePastingEventArgs.Values dictionary and calling the ClipboardNodePastingEventArgs.IsValueValid method for each pair.

See Also