Definition
- Namespace:
- ElmSharp
- Assembly:
- ElmSharp.dll
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.
[Obsolete("This has been deprecated in API12")]
public class MultiButtonEntryItem : ItemObject
- Inheritance
-
object
MultiButtonEntryItem
Constructors
View Source
MultiButtonEntryItem(string)
Creates and initializes a new instance of the MultiButtonEntryItem class.
Declaration
[Obsolete("This has been deprecated in API12")]
public MultiButtonEntryItem(string text)
Parameters
Type |
Name |
Description |
string |
text |
The text of the MultiButtonEntryItem's label name.
|
Properties
View Source
IsSelected
Gets or sets the selected state of an item.
Declaration
[Obsolete("This has been deprecated in API12")]
public bool IsSelected { get; set; }
Property Value
Declaration
[Obsolete("This has been deprecated in API12")]
public string Label { get; }
Property Value
View Source
Next
Get the next item in the MultiButtonEntry.
Declaration
[Obsolete("This has been deprecated in API12")]
public MultiButtonEntryItem Next { get; }
Property Value
View Source
Prev
Get the previous item in the MultiButtonEntry.
Declaration
[Obsolete("This has been deprecated in API12")]
public MultiButtonEntryItem Prev { get; }
Property Value
Extension Methods