API:Vcl.ComCtrls.TComboBoxExStrings.IndexOfName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IndexOfName(const Name: String): Integer; override;

C++

virtual int __fastcall IndexOfName(const System::UnicodeString Name);

Properties

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

Description

Returns the position of the first name-value pair with the specified name.

Vcl.ComCtrls.TComboBoxExStrings.IndexOfName inherits from System.Classes.TStrings.IndexOfName. All content below this line refers to System.Classes.TStrings.IndexOfName.

Returns the position of the first name-value pair with the specified name.

Call IndexOfName to locate the first occurrence of a name-value pair where the name part is equal to the Name parameter or differs only in case. IndexOfName returns the 0-based index of the string. If no string in the list has the indicated name, IndexOfName returns -1.

Note: If there is more than one name-value pair with a name portion matching the Name parameter, IndexOfName returns the position of the first such string.

See Also

Code Examples