mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-30 17:10:43 +02:00
lazutils: comments
git-svn-id: trunk@42003 -
This commit is contained in:
parent
3929a183c3
commit
699c0cbfe6
@ -270,11 +270,11 @@ type
|
||||
property NextSibling: TDOMNode read FNextSibling;
|
||||
property Attributes: TDOMNamedNodeMap read GetAttributes;
|
||||
property OwnerDocument: TDOMDocument read GetOwnerDocument;
|
||||
function GetEnumerator: TDOMNodeEnumerator; // all children including grand children
|
||||
function GetEnumerator: TDOMNodeEnumerator; // all children excluding grand children
|
||||
function GetEnumeratorAllChildren: TDOMNodeAllChildEnumerator; // all children including grand children
|
||||
function GetNextNode: TDOMNode; // first child, then next sibling, then next sibling of parent, ...
|
||||
function GetNextNodeSkipChildren: TDOMNode; // first next sibling, then next sibling of parent, ...
|
||||
function GetPreviousNode: TDOMNode; // the reverse of GetNext
|
||||
function GetPreviousNode: TDOMNode; // the reverse of GetNextNode
|
||||
function GetLastLeaf: TDOMNode; // get last child of last child of ...
|
||||
function GetLevel: SizeInt; // root node has 0
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user