Table of Contents

Class LayoutDocument

Namespace
HeBianGu.Control.Dock.Layout
Assembly
HeBianGu.Control.Dock.dll

Implements the layout model for the LayoutDocumentControl.

[Serializable]
public class LayoutDocument : LayoutContent, ILayoutElement, INotifyPropertyChanged, INotifyPropertyChanging, IXmlSerializable, IComparable<LayoutContent>
Inheritance
LayoutDocument
Implements
Inherited Members
Extension Methods

Properties

CanHide

Documents can't be just hidden so always return false.

public bool CanHide { get; }

Property Value

bool

CanMove

Gets/sets whether a document can be dragged (to be dropped in a different location) or not. Use this property in conjunction with CanMove and CanClose and CanDock to lock a document in its layout position.

public bool CanMove { get; set; }

Property Value

bool

Description

Gets/sets the document's description. Indicates the description to display (in the NavigatorWindow) for the document item.

public string Description { get; set; }

Property Value

string

IsVisible

Gets whether a document is visible or not.

public bool IsVisible { get; }

Property Value

bool

Methods

Close()

Close the content

public override void Close()

Remarks

Note that the anchorable is only hidden (not closed). By default when user click the X button it only hides the content.

ConsoleDump(int)

public override void ConsoleDump(int tab)

Parameters

tab int

InternalDock()

protected override void InternalDock()

ReadXml(XmlReader)

Generates an object from its XML representation.

public override void ReadXml(XmlReader reader)

Parameters

reader XmlReader

The XmlReader stream from which the object is deserialized.

WriteXml(XmlWriter)

Converts an object into its XML representation.

public override void WriteXml(XmlWriter writer)

Parameters

writer XmlWriter

The XmlWriter stream to which the object is serialized.