TLinkedTree

From Ultibo.org
Jump to: navigation, search

Return to Unit UltiboClasses


Description


To be documented

Class definitions



[Expand]

TLinkedTree = class(TObject)


Function declarations



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


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


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


[Expand]
function TLinkedTree.Link(AValue,AParent:TTreeObject):Boolean;
Description: To be documented


[Expand]
function TLinkedTree.LinkEx(APrev,AValue,AParent:TTreeObject):Boolean;
Description: Link AValue after APrev Sibling and Adjust FirstChild/LastChild/Prev/Next


[Expand]
function TLinkedTree.Unlink(AValue:TTreeObject):Boolean;
Description: To be documented


[Expand]
function TLinkedTree.Add(AValue,AParent:TTreeObject):Boolean;
Description: Add AValue to List and Link with Parent and Siblings


[Expand]
function TLinkedTree.Remove(AValue:TTreeObject):Boolean;
Description: Unlink AValue from Parent and Siblings, Remove from List


[Expand]
function TLinkedTree.Insert(APrev,AValue,AParent:TTreeObject):Boolean;
Description: To be documented


[Expand]
procedure TLinkedTree.Move(AValue,AParent:TTreeObject);
Description: To be documented


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


[Expand]
function TLinkedTree.FirstChild(AParent:TTreeObject):TTreeObject;
Description: To be documented


[Expand]
function TLinkedTree.LastChild(AParent:TTreeObject):TTreeObject;
Description: To be documented


Return to Unit Reference