Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
Displaying separation Lines in Outlook ViewStyle
posted

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.

Parents
No Data
Reply
  • 490
    posted

    Hi,

    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

Children