Skip to main content

TreeListControl.CopyingToClipboard Event

Occurs when data is copied to the clipboard, allowing you to manually copy required data.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.dll

#Declaration

public event TreeListCopyingToClipboardEventHandler CopyingToClipboard

#Event Data

The CopyingToClipboard event's handler receives an argument of the TreeListCopyingToClipboardEventArgs type. The following properties provide information specific to this event:

Property Description
Cells Gets an array of cells whose values are about to be copied to the clipboard.
CopyHeader Gets or sets the value indicating whether to copy column headers to the clipboard. Inherited from CopyingToClipboardEventArgsBase.
Handled Gets or sets a value that indicates the present state of the event handling for a routed event as it travels the route. Inherited from RoutedEventArgs.
Nodes Gets an array of nodes whose values are about to be copied to the clipboard.
OriginalSource Gets the original reporting source as determined by pure hit testing, before any possible Source adjustment by a parent class. Inherited from RoutedEventArgs.
RoutedEvent Gets or sets the RoutedEvent associated with this RoutedEventArgs instance. Inherited from RoutedEventArgs.
RowHandles Gets an array of handles that correspond to rows whose values are to be copied to the clipboard. Inherited from CopyingToClipboardEventArgsBase.
Source Gets or sets a reference to the object that raised the event. Inherited from RoutedEventArgs.

#Remarks

The TreeListControl provides two events that allow you to manually process clipboard operations.

To learn more, see Clipboard Operations.

See Also