Is it possible to disable the horizontal scrollbar for the TreeView?
So that the node text can be truncated with a ellipsis (or word wrapped).
I played around with css with no luck.
Best regards
Daniel
Hello,
This feature is not supported. There is no automatic wrapping or ellipsis truncation for a TreeView.
As an alternative, you can set AllowHtml true and put multiline text in a node.
For example:
treeView1.Nodes[0].AllowHtml = true;
treeView1.Nodes[0].Text = "This very long text has <br> breaks because it is too <br>long to fit otherwise.";
-Julie
Please login first to submit.