TLinkedStringList

From Ultibo.org
Jump to: navigation, search

Return to Unit UltiboClasses


Description


To be documented

Class definitions



[Expand]

TLinkedStringList = class(TStrings)


Function declarations



[Expand]
constructor TLinkedStringList.Create;
Description: To be documented


[Expand]
destructor TLinkedStringList.Destroy;
Description: To be documented


[Expand]
function TLinkedStringList.GetItem(AIndex:Integer):TStringObject;
Description: To be documented


[Expand]
function TLinkedStringList.Link(AValue:TStringObject):Boolean;
Description: Link AValue to Prev,Next Siblings and Adjust First/Last


[Expand]
function TLinkedStringList.LinkEx(APrev,AValue:TStringObject):Boolean;
Description: Link AValue after APrev Sibling and Adjust First/Last/Prev/Next


[Expand]
function TLinkedStringList.Unlink(AValue:TStringObject):Boolean;
Description: Unlink AValue from Prev,Next Siblings and Adjust First/Last


[Expand]
procedure TLinkedStringList.ClearList;
Description: To be documented


[Expand]
procedure TLinkedStringList.Changed;
Description: To be documented


[Expand]
procedure TLinkedStringList.Changing;
Description: To be documented


[Expand]
function TLinkedStringList.Get(Index:Integer):String;
Description: To be documented


[Expand]
function TLinkedStringList.GetCount:Integer;
Description: To be documented


[Expand]
function TLinkedStringList.GetObject(Index:Integer):TObject;
Description: To be documented


[Expand]
procedure TLinkedStringList.Put(Index:Integer;const S:String);
Description: To be documented


[Expand]
procedure TLinkedStringList.PutObject(Index:Integer; AObject:TObject);
Description: To be documented


[Expand]
procedure TLinkedStringList.SetUpdateState(Updating:Boolean);
Description: To be documented


[Expand]
function TLinkedStringList.Add(const S:String):Integer;
Description: To be documented


[Expand]
procedure TLinkedStringList.Clear;
Description: To be documented


[Expand]
procedure TLinkedStringList.Delete(Index:Integer);
Description: To be documented


[Expand]
procedure TLinkedStringList.Exchange(Index1,Index2:Integer);
Description: To be documented


[Expand]
function TLinkedStringList.IndexOf(const S:String):Integer;
Description: Uses Counted Index starting from First String Object


[Expand]
procedure TLinkedStringList.Insert(Index:Integer; const S:String);
Description: To be documented


Return to Unit Reference