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
335
How to get UltraToolbarsManager in a form by its name
posted

Hi ,

I want to get the object of UltraToolbarsManager in a form by its name , but it is not a control , I can not get it by loop all the controls , how can i do?

Jason

Parents
  • 18495
    posted

    Hello Jason,

    Thank you for contacting Infragistics.

    In order to reference the UltraToolbarsManager from code you need to already know the name it was given in the designer.  Once you know that you can use code similar to the following:

    VB:  Me.UltraToolbarsManager1

    C#:  this.ultraToolbarsManager1;

Reply Children