Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomVirtualTreeList.OnGetNodeValue Event

In This Article

Enables you to control data reading from the custom data source.

#Declaration

Delphi
property OnGetNodeValue: TcxVirtualTreeListNodeValueEvent read; write;

#Remarks

Handle the OnGetNodeValue event if the TcxTreeListCustomDataSource‘s descendant is not implemented.

Implementation of the event handler is an alternative way of overriding the TcxTreeListCustomDataSource‘s GetValue method, and is applicable if the built-in TcxTreeListCustomDataSource is used (see the Introduction To Provider Mode help topic).

Sender specifies the tree list.

ANode and AColumn specify the data cell whose content is being handled.

AValue specifies the value to be obtained from the data source.

See Also