Skip to content

TabSelectionChangedEventArgs

Namespace: Hex1b.Widgets

Assembly: Hex1b.dll

Event arguments for tab selection changes.

csharp
public sealed class TabSelectionChangedEventArgs : EventArgs

Inheritance

ObjectEventArgsTabSelectionChangedEventArgs

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; }

Released under the MIT License.