I have set the the height of the FocusedNode
using following code
procedure TMainForm.SetheightClick(Sender: TObject);
begin
if Assigned(tree1.FocusedNode) then
Tree1.NodeHeight[Tree1.FocusedNode] := strtointdef(edit8.Text ,50);
end;
I would like to set the height of Tvirtualstringtree
in multiselect nodes. How to do it?