Search
DiagramView.XmlClipboard Property
See Also
 





Gets or sets a value indicating whether the diagram is stored in XML format on the clipboard instead of a binary format.

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

 Syntax

C#  Copy Code

public bool XmlClipboard { get; set; }

Visual Basic  Copy Code

Public Property XmlClipboard As Boolean

 Property Value

true to save clipboard data in XML format, or false otherwise. The default value is true.

 Remarks

This property is relevant for developers who define custom diagram item types. In such cases, select a clipboard format based on whether custom items provide XML-based or binary serialization logic.

 See Also