type TIfStringList = class(TObject)
constructor Create; |
create
destructor Destroy; override; |
destroy
procedure Add(const P: string); |
Add an item to the list
procedure Clear; |
Clear the list
function Count: LongInt; |
Returns the number of items in the list
procedure Delete(NR: LongInt); |
Delete item no NR
function GetItem(Nr: LongInt): string; |
Return item no nr
procedure SetItem(Nr: LongInt; const s: string); |
Set item no nr