Search
DiagramView.CopyHostedControl Event
See Also
 





Raised when a ControlNode's hosted control is copied to or from the clipboard.

Namespace: MindFusion.Diagramming.WinForms
Assembly: MindFusion.Diagramming.WinForms

 Syntax

C#  Copy Code

public event EventHandler<CopyHostedControlEventArgs> CopyHostedControl

Visual Basic  Copy Code

Public Event CopyHostedControl As EventHandler(Of CopyHostedControlEventArgs)

 Event Data

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

Member name

Description

Source

The source Control-derived object.

Destination

The destination Control-derived object.

 Remarks

When copying a ControlNode to the clipboard, MindFusion.Diagramming copies automatically all properties of the hosted control which are of value or string types. CopyHostedControl lets you copy properties that do not fall into that category.

 See Also