In This Article

XmlDockSiteLayout Class

Represents the serializable root node for a DockSite layout.

public class XmlDockSiteLayout : XmlObjectBase
Inheritance:
object XmlObjectBase object

Constructors

XmlDockSiteLayout()

Initializes an instance of the XmlDockSiteLayout class.

public XmlDockSiteLayout()

Properties

AutoHideHost

Gets or sets the auto-hide host of the dock site.

public XmlAutoHideHost AutoHideHost { get; set; }

Property Value

XmlAutoHideHost:

The auto-hide host of the dock site.

Content

Gets or sets the content of the dock site.

public XmlObjectBase Content { get; set; }

Property Value

XmlObjectBase:

The content of the dock site.

DocumentWindows

Gets the collection of document windows.

public XmlDocumentWindowCollection DocumentWindows { get; }

Property Value

XmlDocumentWindowCollection:

The collection of document windows.

RaftingHosts

Gets the collection of rafting hosts.

public XmlRaftingHostCollection RaftingHosts { get; }

Property Value

XmlRaftingHostCollection:

The collection of rafting hosts.

SerializationFormat

Gets or sets the serialization format used when saving the layout.

public DockSiteSerializationBehavior SerializationFormat { get; set; }

Property Value

DockSiteSerializationBehavior:

The serialization format used when saving the layout.

ToolWindows

Gets the collection of tool windows.

public XmlToolWindowCollection ToolWindows { get; }

Property Value

XmlToolWindowCollection:

The collection of tool windows.

Version

Gets or sets the layout version.

public int Version { get; set; }

Property Value

int:

The layout version.

Methods

ShouldSerializeDocumentWindows()

Determines if the DocumentWindows property should be serialized.

public virtual bool ShouldSerializeDocumentWindows()

Returns

bool:

true if the DocumentWindows property should be serialized; otherwise, false.

ShouldSerializeRaftingHosts()

Determines if the RaftingHosts property should be serialized.

public virtual bool ShouldSerializeRaftingHosts()

Returns

bool:

true if the RaftingHosts property should be serialized; otherwise, false.

ShouldSerializeToolWindows()

Determines if the ToolWindows property should be serialized.

public virtual bool ShouldSerializeToolWindows()

Returns

bool:

true if the ToolWindows property should be serialized; otherwise, false.

ShouldSerializeVersion()

Determines if the Version property should be serialized.

public virtual bool ShouldSerializeVersion()

Returns

bool:

true if the Version property should be serialized; otherwise, false.

Inherited Members