API:Data.DBXPlatform.TDBXStringList.Get
[–] Properties | |
---|---|
Type: function | |
Visibility: protected | |
Source: System.Classes.pas | |
Unit: Data.DBXPlatform | |
Parent: TDBXStringList |
Delphi
function Get(Index: Integer): string; override;
Description
Returns a string given its index.
Data.DBXPlatform.TDBXStringList.Get inherits from System.Classes.TStrings.Get. All content below this line refers to System.Classes.TStrings.Get.
Returns a string given its index.
Get is the protected read implementation of the Strings property.
In TStrings Get is abstract or, in C++ terminology, pure virtual, meaning it has no implementation. Descendant classes must override this method to return the string with the specified index.