Class SelectorItem<T>

Definition

Namespace:
Tizen.NUI.BaseComponents
Assembly:
Tizen.NUI.dll
API Level:
9

The selector item class that stores a control state and a T value pair.

C#
Copy
public class SelectorItem<T>
Inheritance
System.Object
SelectorItem<T>

Constructors

View Source

SelectorItem(ControlState, T)

The constructor with the specified state and value.

Declaration
C#
Copy
public SelectorItem(ControlState state, T value)
Parameters
Type Name Description
ControlState state

The state

T value

The value associated with state.

API Level: 9

Properties

View Source

State

The control state.

Declaration
C#
Copy
public ControlState State { get; }
Property Value
Type Description
ControlState
API Level: 9
View Source

Value

The value associated with control state.

Declaration
C#
Copy
public T Value { get; }
Property Value
Type Description
T
API Level: 9