Class PositionChangedEventArgs
Event arguments class used to pass data whenever a RadOutlookBarItem changes its position, i.e. from ActiveArea to MinimizedArea.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public class PositionChangedEventArgs : RadRoutedEventArgs
Constructors
PositionChangedEventArgs(Object, OutlookBarItemPosition, OutlookBarItemPosition)
Initializes a new instance of the PositionChangedEventArgs class.
Declaration
public PositionChangedEventArgs(object source, OutlookBarItemPosition oldPosition, OutlookBarItemPosition newPosition)
Parameters
System.Object
source
The source. |
OutlookBarItemPosition
oldPosition
The old position. |
OutlookBarItemPosition
newPosition
The new position. |
Properties
NewPosition
Gets or sets the new position.
Declaration
public OutlookBarItemPosition NewPosition { get; set; }
Property Value
OutlookBarItemPosition
The new position. |
OldPosition
Gets or sets the old position.
Declaration
public OutlookBarItemPosition OldPosition { get; set; }
Property Value
OutlookBarItemPosition
The old position. |
Methods
InvokeEventHandler(Delegate, Object)
When overridden in a derived class, provides a way to invoke event handlers in a type-specific way, which can increase efficiency over the base implementation.
Declaration
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget)
Parameters
System.Delegate
genericHandler
The generic handler / delegate implementation to be invoked. |
System.Object
genericTarget
The target on which the provided handler should be invoked. |