C# Syntax
public interface IListViewItem : HP.LFT.SDK.ISupportDragAndDrop
Name | Description | |
---|---|---|
IsFocused | Indicates whether the list item is in focus in a multiple selection list box. C# Syntax bool IsFocused {get;} | |
IsSelected | Indicates whether the list item is selected. C# Syntax bool IsSelected {get;} | |
State | The list item's state image index. C# Syntax int State {get;} | |
Text | The text value of the list item, or "" when empty. C# Syntax string Text {get;} |
Name | Description | |
---|---|---|
ClickState | Clicks the state image icon. C# Syntax void ClickState() | |
DoubleClickState | Double-clicks state image icon. C# Syntax void DoubleClickState() | |
DragAndDropOn | Drags and drops a test object to the specified target object. (Inherited from HP.LFT.SDK.ISupportDragAndDrop) | |
EnableLabelEditing | Activates the edit mode for the lists item label to enable renaming.
IMPORTANT: This method only enables the item for renaming. To actually rename the item, set its value using IEditor or IEditField test object, together with an applicable method. C# Syntax void EnableLabelEditing() | |
GetSubItemText(Int32) | Returns the text value of the specified report-style (LVS_REPORT) list-view subitem. C# Syntax string GetSubItemText( int columnIndex ) Parameters
| |
GetSubItemText(String) | Returns the text value of the specified report-style (LVS_REPORT) list-view subitem. C# Syntax string GetSubItemText( string columnName ) Parameters
| |
SetItemState | Sets the state of the check box icon of the specified item in the list. C# Syntax void SetItemState( int index ) Parameters
|