Class MultiButtonEntryItem

Definition

Namespace:
ElmSharp
Assembly:
ElmSharp.dll
API Level:
preview

It inherits ItemObject. MutltiButtonEntryItem is an item, which is added to MultiButtonEntry. It contains Next and Prev properties to get the next and previous item.

C#
Copy
public class MultiButtonEntryItem : ItemObject
Inheritance
MultiButtonEntryItem

Constructors

View Source

MultiButtonEntryItem(String)

Creates and initializes a new instance of the MultiButtonEntryItem class.

Declaration
C#
Copy
public MultiButtonEntryItem(string text)
Parameters
Type Name Description
System.String text

The text of the MultiButtonEntryItem's label name.

API Level: preview

Properties

View Source

IsSelected

Gets or sets the selected state of an item.

Declaration
C#
Copy
public bool IsSelected { get; set; }
Property Value
Type Description
Boolean
API Level: preview
View Source

Label

Gets the label of this item.

Declaration
C#
Copy
public string Label { get; }
Property Value
Type Description
System.String
API Level: preview
View Source

Next

Get the next item in the MultiButtonEntry.

Declaration
C#
Copy
public MultiButtonEntryItem Next { get; }
Property Value
Type Description
MultiButtonEntryItem
API Level: preview
View Source

Prev

Get the previous item in the MultiButtonEntry.

Declaration
C#
Copy
public MultiButtonEntryItem Prev { get; }
Property Value
Type Description
MultiButtonEntryItem
API Level: preview

Extension Methods