Class TStringList

Declaration
TStringList = class(TStrings)
  property Duplicates: Integer read GetDuplicates write SetDuplicates;
  function Find(S: String; var Index: Integer): Boolean;
  function GetDuplicates: Integer;
  function GetSorted: Boolean;
  procedure SetDuplicates(Value: Integer);
  procedure SetSorted(Value: Boolean);
  procedure Sort;
  property Sorted: Boolean read GetSorted write SetSorted;
end;
Description

A wrapper for the Delphi class TStringList. See Delphi help for more information.


Property TStringList.Duplicates

Declaration
property Duplicates: Integer read GetDuplicates write SetDuplicates;
Description



Method TStringList.Find

Declaration
function Find(S: String; var Index: Integer): Boolean;
Description



Method TStringList.GetDuplicates

Declaration
function GetDuplicates: Integer;
Description



Method TStringList.GetSorted

Declaration
function GetSorted: Boolean;
Description



Method TStringList.SetDuplicates

Declaration
procedure SetDuplicates(Value: Integer);
Description



Method TStringList.SetSorted

Declaration
procedure SetSorted(Value: Boolean);
Description



Method TStringList.Sort

Declaration
procedure Sort;
Description



Property TStringList.Sorted

Declaration
property Sorted: Boolean read GetSorted write SetSorted;
Description