Vcl.ComCtrls.TTreeNode.getFirstChild

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function getFirstChild: TTreeNode; {GetFirstChild conflicts with C++ macro}

C++

TTreeNode* __fastcall getFirstChild();

Properties

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

Description

Returns the first child node of a tree node.

Call GetFirstChild to access the first child node of the tree view node. If the node has no children, GetFirstChild returns nil (Delphi) or NULL (C++).

Note: GetFirstChild returns the same value as Item[0].

See Also