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
145
Node cell condition formatting
posted

Hi,

If i like to format the cell appearance when there is a condition, how can i do that?

Example:

Set the nodes text to bold when the Data.IsHeader = true

 

Node1(IsHeader)

      ChildNode (IsHeader)

           ChildNode

      ChildNode

Node2

Node3 (IsHeader)

     ChildNode (IsHeader)

           ChildNode (IsHeader)

                ChildNode

 

 

 

Parents
No Data
Reply
  • 469350
    Offline posted

    If your tree is bound, then the easiest thing to do would be to examine the node and it's data in the InitializeDataNode event.

    If it's not bound, then you can set the appearance on the node when you add it to the tree.

Children