Class IndexItem

Definition

Namespace:
ElmSharp
Assembly:
ElmSharp.dll

The IndexItem is used to manage the index item. Inherits ItemObject.

C#
Copy
public class IndexItem : ItemObject
Inheritance
object
IndexItem

Constructors

View Source

IndexItem(string)

Creates and initializes a new instance of the IndexItem class.

Declaration
C#
Copy
public IndexItem(string text)
Parameters
Type Name Description
string text

The text is set to the Text. It's the 'string' type.

Properties

View Source

Text

Gets the text.

Declaration
C#
Copy
public string Text { get; }
Property Value
Type Description
string

Methods

View Source

Select(bool)

Sets the selected state of an item.

Declaration
C#
Copy
public void Select(bool selected)
Parameters
Type Name Description
bool selected

The selected state.

Events

View Source

Selected

Selected will be triggered when the index item is selected.

Declaration
C#
Copy
public event EventHandler Selected
Event Type
Type Description
System.EventHandler

Extension Methods