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
115
UltraToolbarsManager - Change tool button position at runtime
posted

Hello everyone!

Does anybody know if it is possible to change the position of a tool button that was added at runtime? I have added a button at runtime but it always appears at the bottom of the ones added at design time.

Thanks in advance!

Parents
No Data
Reply
  • 5520
    Verified Answer
    posted

    when adding the tool use insert instead of add and put in the first argument the index where you want to add the tool 

    ultraToolbarsManager1.Toolbars[0].Tools.InsertTool(0, "key");

Children