Class TabButtonSelectedEventArgs

Definition

Namespace:
Tizen.NUI.Components
Assembly:
Tizen.NUI.Components.dll

TabButtonSelectedEventArgs is a class to record tab button selected event arguments which will be sent to a user.

C#
Copy
public class TabButtonSelectedEventArgs : EventArgs
Inheritance
TabButtonSelectedEventArgs

Constructors

View Source

TabButtonSelectedEventArgs(Int32)

Creates a new instance of TabButtonSelectedEventArgs. The indices of tab buttons in TabBar are basically the order of adding to TabBar by AddTab(TabButton, View). So a tab button's index in TabBar can be changed whenever AddTab(TabButton, View) or RemoveTab(Int32) is called.

Declaration
C#
Copy
public TabButtonSelectedEventArgs(int index)
Parameters
Type Name Description
Int32 index

The index of the selected tab button in TabBar.

Properties

View Source

Index

The index of the selected tab button.

Declaration
C#
Copy
public int Index { get; }
Property Value
Type Description
Int32

Extension Methods