Class
ActivePangeChangedEventArgs

The event arguments are used for ActivePangeChanged event.

Definition

Namespace:Telerik.Windows.Controls.Docking

Assembly:Telerik.Windows.Controls.Docking.dll

Syntax:

cs-api-definition
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Pange")]
public class ActivePangeChangedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsActivePangeChangedEventArgs

Constructors

ActivePangeChangedEventArgs(RoutedEvent, object, RadPane, RadPane)

Initializes a new instance of the ActivePangeChangedEventArgs class.

Declaration

cs-api-definition
public ActivePangeChangedEventArgs(RoutedEvent routedEvent, object source, RadPane oldPane, RadPane newPane)

Parameters

routedEvent

RoutedEvent

The routed event identifier for this instance of the RoutedEventArgs class.

source

object

An alternate source that will be reported when the event is handled. This pre-populates the Source property.

oldPane

RadPane

The old active pane.

newPane

RadPane

The new active pane that was just activated.

Properties

NewPane

Gets the new active pane that was just activated.

Declaration

cs-api-definition
public RadPane NewPane { get; }

Property Value

RadPane

OldPane

Gets the old active pane.

Declaration

cs-api-definition
public RadPane OldPane { get; }

Property Value

RadPane