Vcl.Outline.TOutlineNode.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TCustomOutline);

C++

__fastcall TOutlineNode(TCustomOutline* AOwner);

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.Outline.pas
Vcl.Outline.hpp
Vcl.Outline TOutlineNode

Description

Creates a new TOutlineNode object.

Do not call the constructor for TOutlineNode directly. Instead, use one of the methods of the outline component in which the node should appear. These methods are as follows:



Method Action

Add

Creates the node as the last sibling of a specified node.

AddObject

Same as Add, but also initializing the node's Data property.

AddChild

Creates the node as the last child of a specified node.

AddChildObject

Same as AddChild, but also initializing the node's Data property.

Insert

Creates the node in the current position of an existing node.

InsertObject

Same as Insert, but also initializing the node's Data property.



See Also