TabSelectionChangedEventArgs
Namespace: Hex1b.Widgets
Assembly: Hex1b.dll
Event arguments for tab selection changes.
csharp
public sealed class TabSelectionChangedEventArgs : EventArgsInheritance
Object → EventArgs → TabSelectionChangedEventArgs
Properties
PreviousIndex
The index of the previously selected tab, or -1 if none.
Returns: Int32
csharp
public int PreviousIndex { get; init; }SelectedIndex
The index of the newly selected tab.
Returns: Int32
csharp
public int SelectedIndex { get; init; }SelectedTitle
The title of the newly selected tab.
Returns: String
csharp
public string SelectedTitle { get; init; }