I am using UltraTree in Outlook ViewStyle. I have the One Expandable parent node with data nodes under neither that line up the column headers correctly but I can't get the nodes to show lines like in Outlook Express 2007. The information is "floating", does the UltraTree in Outlook View Style support displaying of horizontal lines? Is there another way to display lines horizontally separating the nodes?
Setting Border Color for the override node or for the Node cell appearance does not display any border.
Thanks. I have got the point. I needed to set:
ultraTree1.Override.BorderStyleNode = UIElementBorderStyle.Dotted;
And it's working fine now. Actually I forgot to set the borderstyle of the node.
Hi,
Please try this:-
Tree1.ColumnSettings.CellAppearance.BorderColor = SystemColors.Control;//any color
Regards,
Sheeba
I am facing the same problem. Setting the 'ViewStyle' of UltraTree to OutlookExpress doesn't display any border of the node, although I have set following properties for border:
ultraTree1.BorderStyle = UIElementBorderStyle.Dotted;
Loop{ ultraTree1.Nodes[i].Override.ActiveNodeAppearance.BorderColor = Color.Black; ultraTree1.Nodes[i].Override.SelectedNodeAppearance.BorderColor = Color.Black; ultraTree1.Nodes[i].Override.HotTrackingNodeAppearance.BorderColor = Color.Black; ultraTree1.Nodes[i].Override.ExpandedNodeAppearance.BorderColor = Color.Black; ultraTree1.Nodes[i].Override.NodeAppearance.BorderColor = Color.Black;}
Doesn't OutlookExpress ViewStyle support border color for nodes in an UltraTree?Thanks in advance.
Regards,Nazish Kanwal