System.WideStrings.TWideStrings.Get

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Get(Index: Integer): WideString; virtual; abstract;

C++

virtual System::WideString __fastcall Get(int Index) = 0 ;

Properties

Type Visibility Source Unit Parent
function protected
System.WideStrings.pas
System.WideStrings.hpp
System.WideStrings TWideStrings

Description

Returns a string given its index.

Get is the protected read implementation of the Strings property.

In TWideStrings 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.

See Also