In This Article

DockingWindowDeserializingEventArgs Class

Provides event arguments that are used for DockingWindow deserializing event.

public class DockingWindowDeserializingEventArgs : EventArgs
Inheritance:
object EventArgs object

Constructors

DockingWindowDeserializingEventArgs(DockingWindow, XmlDockingWindow)

Initializes a new instance of the ItemSerializationEventArgs class.

public DockingWindowDeserializingEventArgs(DockingWindow window, XmlDockingWindow node)
Parameter Type Description
window DockingWindow

The DockingWindow that is represented by the serializable Node.

node XmlDockingWindow

The serializable XmlDockingWindow that is used to represent the Window.

Properties

Handled

Gets or sets a value that indicates whether the default processing should be cancelled.

public bool Handled { get; set; }

Property Value

bool:

true if the event has been handled; otherwise, false.

Node

Gets the serializable XmlDockingWindow that is used to represent the Window.

public XmlDockingWindow Node { get; }

Property Value

XmlDockingWindow:

The serializable XmlDockingWindow that is used to represent the Window.

Window

Gets or sets the DockingWindow that is represented by the serializable Node.

public DockingWindow Window { get; set; }

Property Value

DockingWindow:

The DockingWindow that is represented by the serializable Node.

Inherited Members