TLinkedStringList
From Ultibo.org
Revision as of 05:49, 31 May 2018 by Ultibo (Talk | contribs) (Created page with "Return to Unit UltiboClasses __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-colla...")
Return to Unit UltiboClasses
Description
To be documented
Class definitions
[Expand]
TLinkedStringList = class(TStrings)
Function declarations
[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.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.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