How can I save the current layout of a SchedulerControl as the default layout upon closing the form in DevExpress using VB.Net?

The user can change the timeline and view of the SchedulerControl. I want the layout to be set as the default layout upon closing the form.

Upvotes: 0

Views: 145

Answers (1)

Brendon
Brendon

Reputation: 1259

You can save and restore the Scheduler Control's layout as detailed in the How to: Save and Restore a Layout documentation.

The Scheduler Control offers three different methods for saving a layout, which you can invoke when the form is closed:

And each has their own respective version for restoring the layout from the selected store:

Upvotes: 1

Related Questions