How can I resize Tag browse tree in vision client

I have a requirement in my project to resize the width of the tag browse tree component in Ignition Vision client session similar to how we resize the component " Tag browser " in the designer. Is that possible?

Yes; It can be done. I would probably approach this using a combination of the Tag Browse Tree's mouseDragged and mouseMoved event handlers. The mouseMoved handler could be used to determine the mouse pointer's proximity to the edge of the Tag Browse Tree, and when the pointer is within a certain proximity, use the event to set the appropriate pointer. Then, using the mouseDragged event handler, if the mouse is within that established proximity, system.gui,transform could be used to resize the component.

1 Like

Thanks! Let me try this out and get back