System.Classes.TStrings.operator []
C++
System::UnicodeString operator[](int Index) { return this->Strings[Index]; }
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.Classes.hpp | System.Classes | TStrings |
Description
Returns the string at a specified position.
The [] operator returns the string at the position indicated by Index
. The [] operator assumes a base index of 1.