Images
Lists the images that can appear on nodes.Images contains a list of images that can appear on the items (nodes). Each node ImageIndexAfter and ImageIndexBefore property determines the specific image displayed on it. If Images is unassigned, no images are displayed on the node.
property Images: TImageList read FImages write SetImages;Example:
NextLayout61.Images := ImageList1;
with NextLayout61.Nodes.Add(TNxLabelLayoutNode6) do
begin
ImageIndexBefore := 2;
TextBefore := 'Value:';
Padding.SetBounds(16, 4, 4, 4);
end;