Interface IListItem
A single list item belonging to a .NET Window Forms list.
Namespace: HP.LFT.SDK.WinForms
Assembly: HP.LFT.SDK.dll
Syntax
public interface IListItem
Properties
Height
This list item's height (in pixels).
Declaration
int Height { get; }
Property Value
| Type | Description |
|---|---|
| int |
IsAnchor
Indicates whether this list item is an anchor item (the item from which a multiple selection span starts).
Declaration
bool IsAnchor { get; }
Property Value
| Type | Description |
|---|---|
| bool |
IsChecked
Indicates whether this list item's check box is currently selected.
Declaration
bool IsChecked { get; }
Property Value
| Type | Description |
|---|---|
| bool |
IsFocused
Indicates whether this list item has the focus in this multiple selection list box.
Declaration
bool IsFocused { get; }
Property Value
| Type | Description |
|---|---|
| bool |
IsSelected
Indicates whether this list item is selected.
Declaration
bool IsSelected { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Text
The text of this list item, or "" if the list item does not contain any text.
Declaration
string Text { get; }
Property Value
| Type | Description |
|---|---|
| string |