Package com.hp.lft.sdk.stdwin
Interface ListItem
public interface ListItem
A single list item in a standard Windows list.
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the list item's height (in pixels).getText()Returns the text value of the list item, or "" when empty.booleanIndicates whether the list item has focus in a multiple selection list box.booleanIndicates 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
-