Vcl.Outline.TOutlineNode.Data

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Data: TCustomData read FData write FData;

C++

__property void * Data = {read=FData, write=FData};

Properties

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

Description

Points to application-specific data associated with the node.

Use Data to associate an arbitrary value with a node in an outline. For example, if the outline represents the table of contents to an electronic document, Data could point to an object that provides jump information for accessing the section of the document named by the node.

The Data property is usually described by the Text property, which is displayed in the rendered image of the node.

See Also