TTreeObject
From Ultibo.org
								Revision as of 05:28, 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
TTreeObject = class(TListObject)
| Note: A TObject with Prev/Next/Parent/FirstChild for use in Trees | |
private 
 | |
 FParent:TTreeObject;
 | 
|
 FFirstChild:TTreeObject;
 | 
|
 FLastChild:TTreeObject;
 | 
|
public 
 | |
 property Parent:TTreeObject read FParent write FParent;
 | 
|
 property FirstChild:TTreeObject read FFirstChild write FFirstChild;
 | 
|
 property LastChild:TTreeObject read FLastChild write FLastChild;
 | 
|
Function declarations
None defined
Return to Unit Reference