Class TabItem

Definition

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

TabView provides Add(TabItem tabItem) to add a tab from the given TabItem. TabItem contains Title and IconUrl of a new TabButton in TabView's TabBar and Content of a new View in TabView's TabContent.

C#
Copy
public class TabItem : object
Inheritance
TabItem

Constructors

View Source

TabItem()

Creates a new instance of TabItem.

Declaration
C#
Copy
public TabItem()

Properties

View Source

Content

Content of TabItem. Content is added to TabView's TabContent.

Declaration
C#
Copy
public View Content { get; set; }
Property Value
Type Description
View
View Source

IconUrl

IconUrl of TabItem. IconUrl is set to the IconUrl of a new TabButton in TabView's TabBar.

Declaration
C#
Copy
public string IconUrl { get; set; }
Property Value
Type Description
String
View Source

TabButtonStyle

TabButton style applied to a new TabButton when TabView adds TabItem.

Declaration
C#
Copy
public TabButtonStyle TabButtonStyle { get; set; }
Property Value
Type Description
TabButtonStyle
View Source

Title

Title of TabItem. Title is set to the Text of a new TabButton in TabView's TabBar.

Declaration
C#
Copy
public string Title { get; set; }
Property Value
Type Description
String

Extension Methods