Search
DiagramBase.RequestClipboard Event
See Also
 





Raised when an object within the diagram requests an operation with the clipboard.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<ClipboardEventArgs> RequestClipboard

Visual Basic  Copy Code

Public Event RequestClipboard As EventHandler(Of ClipboardEventArgs)

 Event Data

RequestClipboard event handlers receive an argument of type ClipboardEventArgs. The following ClipboardEventArgs members provide information relevant to the event:

Member name

Description

IsGetOperation

Indicates whether getting or setting the clipboard.

Source

The object, which initiated the operation.

Data

The clipboard data.

DataType

The type of the clipboard data. This is relevant during Clipboard get operations.

 See Also