Vcl.ComCtrls.TTreeNode.GetNext
Delphi
function GetNext: TTreeNode;
C++
TTreeNode* __fastcall GetNext();
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | Vcl.ComCtrls.pas Vcl.ComCtrls.hpp |
Vcl.ComCtrls | TTreeNode |
Description
Returns the next node after the calling node in the tree view.
If the calling node is the last node, GetNext returns nil (Delphi) or NULL (C++). Otherwise, it returns the next node including nodes that aren't visible and child nodes. To get the next node at the same level as the calling node, use getNextSibling. To get the next visible node, use GetNextVisible.
See Also
Code Examples