IListView.SelectedItem

Syntax

SelectedItem: IListViewItem;

Description

The SelectedItem property determines selected element of the component.

Comments

If the MultiSelect property is set to True, the SelectedItem property returns the last selected element.

Example

Executing the example requires a form, a button named Button1 positioned on it and the ListView component named ListView1.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Var

Items: IListViewItems;

Begin

Items := ListView1.Items;

ListView1.SelectedItem := Items.Item(1);

ListView1.SelectedItem := Items.Item(2);

ListView1.SetFocus;

End Sub Button1OnClick;

After executing the example pressing the button selects the second and third elements of the ListView1 component.

See also:

IListView