Multiple selecting in TreeView

Good day.
Is it possible to select many items in TreeView?
I can’t find any method in TreeView to set multiple flag. Maybe I need override something in TreeVewItem?
As usual waiting for your replying.

Good point. Treeviews are capable of multi-selection but I never added a flag to do it automatically, you’d need to use your own custom component and call setSelected() differently when it gets clicked.

I’ll make a note to add a flag for it, as it’s not hard to do.

Thanks for replying. Going to develop multiple selection with Ctrl button.