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