ClassLayoutSerializationEventArgs
Defines event arguments used for RadDocking layout Serialization events.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Docking.dll
Syntax:
public class LayoutSerializationEventArgs : LayoutSerializationBaseEventArgs, IElementProperties
Inheritance: objectEventArgsLayoutSerializationBaseEventArgsLayoutSerializationEventArgs
Derived Classes:
Implements:
Inherited Members
Constructors
LayoutSerializationEventArgs(DependencyObject, string)
Initializes a new instance of the LayoutSerializationEventArgs class.
Declaration
public LayoutSerializationEventArgs(DependencyObject affectedElement, string affectedElementSerializationTag)
Parameters
affectedElement
DependencyObject
The affected element.
affectedElementSerializationTag
The serialization tag of the affected element.
LayoutSerializationEventArgs(DependencyObject, string, Dictionary<string, string>)
Initializes a new instance of the LayoutSerializationEventArgs class.
Declaration
public LayoutSerializationEventArgs(DependencyObject affectedElement, string affectedElementSerializationTag, Dictionary<string, string> elementProperties)
Parameters
affectedElement
DependencyObject
The affected element.
affectedElementSerializationTag
The serialization tag of the affected element.
elementProperties
A Dictionary<TKey, TValue> containing the string representations of the DependencyPropertys of the AffectedElement.
Properties
ElementProperties
Gets a Dictionary<TKey, TValue> containing the string representations of the DependencyPropertys of the AffectedElement that will be saved to the layout Xml of the RadDocking.
Declaration
public Dictionary<string, string> ElementProperties { get; }
Property Value
Implements