Class SelectedItemChangedEventArgs
Class represents the Selected Item Changed Event
Inheritance
System.Object
SelectedItemChangedEventArgs
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public class SelectedItemChangedEventArgs
Constructors
SelectedItemChangedEventArgs(TabItemExt, TabItemExt)
Initializes a new instance of the SelectedItemChangedEventArgs class.
Declaration
public SelectedItemChangedEventArgs(TabItemExt oldSelectedItem, TabItemExt newSelectedItem)
Parameters
Type | Name | Description |
---|---|---|
TabItemExt | oldSelectedItem | The old selected item. |
TabItemExt | newSelectedItem | The new selected item. |
Properties
Cancel
Gets or Sets the Cancel of Selected TabItem
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
NewSelectedItem
Gets or sets the new selected item.
Declaration
public TabItemExt NewSelectedItem { get; set; }
Property Value
Type | Description |
---|---|
TabItemExt | The new selected item. |
OldSelectedItem
Gets or sets the old selected item.
Declaration
public TabItemExt OldSelectedItem { get; set; }
Property Value
Type | Description |
---|---|
TabItemExt | The old selected item. |