Skip to main content
A newer version of this page is available. .

SchedulerControl.RestoreLayoutFromRegistry(String) Method

Restores the control’s layout from the layout stored at the specified system registry path.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.1.dll

Declaration

public void RestoreLayoutFromRegistry(
    string path
)

Parameters

Name Type Description
path String

A String value specifying the system registry path. If the specified path doesn’t exist, calling this method has no effect.

Remarks

Use the RestoreLayoutFromRegistry method to restore the control’s layout which has been written to the system registry by the SchedulerControl.SaveLayoutToRegistry method. You can define the whole and partial registry keys as this method’s parameter. For example, if you define “Software\Company", the full path will be as follows: “HKEY_CURRENT_USER\Software\Company". To store a layout in another root key, you should define the entire path, as, for example: “HKEY_LOCAL_MACHINE\Software\Company".

See Also