Class
PositionChangedEventArgs

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

object

The source.

oldPosition

OutlookBarItemPosition

The old position.

newPosition

OutlookBarItemPosition

The new position.

Properties

NewPosition

Gets or sets the new position.

Declaration

cs-api-definition
public OutlookBarItemPosition NewPosition { get; set; }

Property Value

OutlookBarItemPosition

The new position.

OldPosition

Gets or sets the old position.

Declaration

cs-api-definition
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

cs-api-definition
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget)

Parameters

genericHandler

Delegate

The generic handler / delegate implementation to be invoked.

genericTarget

object

The target on which the provided handler should be invoked.