Event arguments class used to pass data whenever a RadOutlookBarItem changes its position, i.e. from ActiveArea to MinimizedArea.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
C#
public class PositionChangedEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsPositionChangedEventArgs
Constructors
Initializes a new instance of the PositionChangedEventArgs class.
C#
public PositionChangedEventArgs(object source, OutlookBarItemPosition oldPosition, OutlookBarItemPosition newPosition)
The source.
oldPositionOutlookBarItemPositionThe old position.
newPositionOutlookBarItemPositionThe new position.
Properties
Gets or sets the new position.
C#
public OutlookBarItemPosition NewPosition { get; set; }
The new position.
Gets or sets the old position.
C#
public OutlookBarItemPosition OldPosition { get; set; }
The old position.
Methods
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.