IListItem Interface
A single list item in a PowerBuilder list.

C# Syntax

public interface IListItem 
Public Properties
 NameDescription
PropertyHeight

The height of the list item (in pixels).  

C# Syntax

int Height {get;}
PropertyIsAnchor

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

C# Syntax

bool IsAnchor {get;}
PropertyIsFocused

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

C# Syntax  

bool IsFocused {get;}
PropertyIsSelected

Indicates whether the list item is selected.  

C# Syntax  

bool IsSelected {get;}
PropertyText

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

C# Syntax  

string Text {get;}
Top