Vcl.ComCtrls.TTreeNode.getNextSibling

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function getNextSibling: TTreeNode; {GetNextSibling conflicts with C++ macro}

C++

TTreeNode* __fastcall getNextSibling();

Properties

Type Visibility Source Unit Parent
function public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TTreeNode

Description

Returns the next node in the tree view at the same level as the calling node.

GetNextSibling will return the next node, regardless of whether it's visible. To find the next node in the tree view including child nodes, use GetNext.

See Also