New to Telerik UI for WPFStart a free 30-day trial

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)
Parameters:sourceobject

The source.

oldPositionOutlookBarItemPosition

The old position.

newPositionOutlookBarItemPosition

The new position.

Properties

Gets or sets the new position.

C#
public OutlookBarItemPosition NewPosition { get; set; }
Property Value:

The new position.

Gets or sets the old position.

C#
public OutlookBarItemPosition OldPosition { get; set; }
Property Value:

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.

C#
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget)
Parameters:genericHandlerDelegate

The generic handler / delegate implementation to be invoked.

genericTargetobject

The target on which the provided handler should be invoked.