Table of Contents

Interface IListItem

Namespace
HP.LFT.SDK.WinForms
Assembly
HP.LFT.SDK.dll

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

int

IsAnchor

Indicates whether this list item is an anchor item (the item from which a multiple selection span starts).

bool IsAnchor { get; }

Property Value

bool

IsChecked

Indicates whether this list item's check box is currently selected.

bool IsChecked { get; }

Property Value

bool

IsFocused

Indicates whether this list item has the focus in this multiple selection list box.

bool IsFocused { get; }

Property Value

bool

IsSelected

Indicates whether this list item is selected.

bool IsSelected { get; }

Property Value

bool

Text

The text of this list item, or "" if the list item does not contain any text.

string Text { get; }

Property Value

string