Table of Contents

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

int

IsAnchor

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

bool IsAnchor { get; }

Property Value

bool

IsFocused

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

bool IsFocused { get; }

Property Value

bool

IsSelected

Indicates whether the list item is selected.

bool IsSelected { get; }

Property Value

bool

Text

The text value of the list item, or "" when empty.

string Text { get; }

Property Value

string