TStrings = class(TObject) function Add(Str: String): Integer; function AddObject(S: String; AObject: TObject): Integer; procedure AddStrings(Strings: TStringList); procedure Clear; property CommaText: String read GetCommaText write SetCommaText; property Count: Integer read GetCount; constructor Create; procedure Delete(Index: Integer); destructor Destroy; procedure Exchange(Index1: Integer; Index2: Integer); function Get(Index: Integer): String; function GetCommaText: String; function GetCount: Integer; function GetNames(Index: Integer): String; function GetObjects(Index: Integer): TObject; function GetStrings(Index: Integer): String; function GetText: String; function GetValues(Str: String): String; function IndexOf(Str: String): Integer; function IndexOfName(Str: String): Integer; function IndexOfObject(AObject: TObject): Integer; procedure Insert(Index: Integer; Str: String); procedure InsertObject(Index: Integer; S: String; AObject: TObject); procedure LoadFromFile(FileName: String); procedure Move(CurIndex: Integer; NewIndex: Integer); property Names[Index: Integer]: String read GetNames; property Objects[Index: Integer]: TObject read GetObjects write SetObjects; procedure SaveToFile(FileName: String); function SetCommaText(Value: String): String; procedure SetObjects(Index: Integer; Value: TObject); procedure SetStrings(Index: Integer; Value: String); procedure SetText(Value: String); procedure SetValues(Str: String; Value: String); property Strings[Index: Integer]: String read GetStrings write SetStrings; default; property Text: Integer read GetText write SetText; property Values[Str: String]: String read GetValues write SetValues; end;Description
A wrapper for the Delphi class TStrings. See Delphi help for more information.
function Add(Str: String): Integer;Description
function AddObject(S: String; AObject: TObject): Integer;Description
procedure AddStrings(Strings: TStringList);Description
procedure Clear;Description
property CommaText: String read GetCommaText write SetCommaText;Description
property Count: Integer read GetCount;Description
constructor Create;Description
procedure Delete(Index: Integer);Description
destructor Destroy;Description
procedure Exchange(Index1: Integer; Index2: Integer);Description
function Get(Index: Integer): String;Description
function GetCommaText: String;Description
function GetCount: Integer;Description
function GetNames(Index: Integer): String;Description
function GetObjects(Index: Integer): TObject;Description
function GetStrings(Index: Integer): String;Description
function GetText: String;Description
function GetValues(Str: String): String;Description
function IndexOf(Str: String): Integer;Description
function IndexOfName(Str: String): Integer;Description
function IndexOfObject(AObject: TObject): Integer;Description
procedure Insert(Index: Integer; Str: String);Description
procedure InsertObject(Index: Integer; S: String; AObject: TObject);Description
procedure LoadFromFile(FileName: String);Description
procedure Move(CurIndex: Integer; NewIndex: Integer);Description
property Names[Index: Integer]: String read GetNames;Description
property Objects[Index: Integer]: TObject read GetObjects write SetObjects;Description
procedure SaveToFile(FileName: String);Description
function SetCommaText(Value: String): String;Description
procedure SetObjects(Index: Integer; Value: TObject);Description
procedure SetStrings(Index: Integer; Value: String);Description
procedure SetText(Value: String);Description
procedure SetValues(Str: String; Value: String);Description
property Strings[Index: Integer]: String read GetStrings write SetStrings; default;Description
property Text: Integer read GetText write SetText;Description
property Values[Str: String]: String read GetValues write SetValues;Description