Gets or sets the XML document bound to the C1XmlEditor.

Namespace:  C1.Win.XmlEditor
Assembly:  C1.Win.XmlEditor.2 (in C1.Win.XmlEditor.2.dll)

Syntax

C#
[BrowsableAttribute(false)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
public XmlDocument Document { get; set; }
Visual Basic (Declaration)
<BrowsableAttribute(False)> _
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> _
Public Property Document As XmlDocument

Remarks

The control and the document are bound. If the document is edited within the control, then the underlying XmlDocument changes to match it. If the XmlDocument changes (in code), then the changes appear in the editor.

See Also