Package com.hp.lft.sdk.powerbuilder
Interface ListItem
public interface ListItem
A single list item in a PowerBuilder list.
-
Method Summary
Modifier and TypeMethodDescriptionint
Returns the list item's height (in pixels).getText()
Returns the text value of the list item, or "" when empty.boolean
Indicates whether the list item has focus in a multiple selection list box.boolean
Indicates whether the list item is selected.
-
Method Details
-
getText
Returns the text value of the list item, or "" when empty.- Returns:
- the text value of the list item
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
isFocused
Indicates whether the list item has focus in a multiple selection list box.- Returns:
- true if the list item has focus in a multiple selection list box.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getHeight
Returns the list item's height (in pixels).- Returns:
- the list item's height (in pixels).
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
isSelected
Indicates whether the list item is selected.- Returns:
- true, if the list item is selected.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-