System.Classes.TStrings.IndexOfName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IndexOfName(const Name: string): Integer; virtual;

C++

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

Properties

Type Visibility Source Unit Parent
function public
System.Classes.pas
System.Classes.hpp
System.Classes TStrings

Description

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