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
1310
Saving the workspace in database
posted

Hello

  How do we save the workspace in the ultradockmanager, workspace includes size and position of all tabs; all settings of a grid etc in to the database, so on restart of the application saved workspace is reloaded?

Regards

Jeni

 

 

Parents
  • 53790
    posted

    Hello Jeni,

    Maybe one possible approach to achieve desired behavior could be if you are using Save / Load methods of our controls. For example our UltraDockManager has:

    ultraDockManager1.SaveAsBinary();

    ultraDockManager1.LoadFromBinary();

    or

    ultraDockManager1.SaveComponentSettings();

    ultraDockManager1.SaveAsXML();

    About our UltraGrid, you could try:

    ultraGrid1.DisplayLayout.SaveAsXml();

    ultraGrid1.DisplayLayout.Save();

    Please let me  know if you have any questions.

    Regards 

Reply Children