Interface IListItem
- Namespace
- HP.LFT.SDK.PowerBuilder
- Assembly
- HP.LFT.SDK.dll
A single list item in a PowerBuilder list.
public interface IListItem
Properties
Height
The height of the list item (in pixels).
int Height { get; }
Property Value
IsAnchor
Indicates whether the list item is an anchor item (the item from which a multiple selection span starts).
bool IsAnchor { get; }
Property Value
IsFocused
Indicates whether the list item has focus in a multiple selection list box.
bool IsFocused { get; }
Property Value
IsSelected
Indicates whether the list item is selected.
bool IsSelected { get; }
Property Value
Text
The text value of the list item, or "" when empty.
string Text { get; }