TList = class(TObject) function Add(Obj: TObject): Integer; procedure Clear; function Count: Integer; constructor Create; procedure Delete(Index: Integer); destructor Destroy; function GetItems(Index: Integer): TObject; function IndexOf(Obj: TObject): Integer; procedure Insert(Index: Integer; Obj: TObject); property Items[Index: Integer]: TObject read GetItems write SetItems; default; function Remove(Obj: TObject): Integer; procedure SetItems(Index: Integer; Value: TObject); end;Description
A wrapper for the Delphi class TList. See Delphi help for more information.
function Add(Obj: TObject): Integer;Description
procedure Clear;Description
function Count: Integer;Description
constructor Create;Description
procedure Delete(Index: Integer);Description
destructor Destroy;Description
function GetItems(Index: Integer): TObject;Description
function IndexOf(Obj: TObject): Integer;Description
procedure Insert(Index: Integer; Obj: TObject);Description
property Items[Index: Integer]: TObject read GetItems write SetItems; default;Description
function Remove(Obj: TObject): Integer;Description
procedure SetItems(Index: Integer; Value: TObject);Description