ClassPositionChangedEventArgs
Class
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:
cs-api-definition
public class PositionChangedEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsPositionChangedEventArgs
Constructors
PositionChangedEventArgs(object, OutlookBarItemPosition, OutlookBarItemPosition)
Initializes a new instance of the PositionChangedEventArgs class.
Declaration
cs-api-definition
public PositionChangedEventArgs(object source, OutlookBarItemPosition oldPosition, OutlookBarItemPosition newPosition)
Parameters
source
The source.
oldPosition
The old position.
newPosition
The new position.
Properties
NewPosition
Gets or sets the new position.
Declaration
cs-api-definition
public OutlookBarItemPosition NewPosition { get; set; }
Property Value
The new position.
OldPosition
Gets or sets the old position.
Declaration
cs-api-definition
public OutlookBarItemPosition OldPosition { get; set; }
Property Value
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.