Vcl.ComCtrls.TComboBoxExStrings.Get

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Get(Index: Integer): String; override;

C++

virtual System::UnicodeString __fastcall Get(int Index);

Properties

Type Visibility Source Unit Parent
function public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TComboBoxExStrings

Description

Returns a string given its index.

Vcl.ComCtrls.TComboBoxExStrings.Get inherits from Vcl.StdCtrls.TCustomComboBoxStrings.Get. All content below this line refers to Vcl.StdCtrls.TCustomComboBoxStrings.Get.

Returns a string given its index.

Get is the protected read implementation of the Strings property. It fetches the specified string from the combo box identified by the ComboBox property.

Index identifies the string to return, where 0 is the index of the first string, 1 is the index of the second string, and so on.

See Also