Table of Contents

Class TabEventArgs

Namespace
SharpConsoleUI.Events
Assembly
SharpConsoleUI.dll

Event args for tab added/removed events.

public class TabEventArgs : EventArgs
Inheritance
TabEventArgs
Inherited Members
Extension Methods

Constructors

TabEventArgs(TabPage, int)

Initializes a new instance of TabEventArgs.

public TabEventArgs(TabPage tabPage, int index)

Parameters

tabPage TabPage
index int

Properties

Index

The index where the tab was added or removed.

public int Index { get; }

Property Value

int

TabPage

The tab page that was added or removed.

public TabPage TabPage { get; }

Property Value

TabPage