FMX.ListBox.TListBoxSelector.UserSetIndex

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure UserSetIndex(const Index: Integer); virtual;

C++

virtual void __fastcall UserSetIndex(const int Index);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.ListBox.pas
FMX.ListBox.hpp
FMX.ListBox TListBoxSelector

Description

A method that executes when you programatically set the index of an item.

The accepted parameter is:

  • Index: The value that you want to set as the index of an item.

TCustomListBox.SetItemIndex calls UserSetIndex. UserSetIndex calls DoUserSetIndex.

See Also