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

ChartWizard.LoadLayoutFromRegistry(String) Method

Loads a Wizard’s layout stored at the specified system registry path.

Namespace: DevExpress.XtraCharts.Wizard

Assembly: DevExpress.XtraCharts.v18.2.Wizard.dll

Declaration

public void LoadLayoutFromRegistry(
    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 LoadLayoutFromRegistry method to restore the Wizard’s layout written to the system registry by the ChartWizard.SaveLayoutToRegistry method. You can define whole and partial registry keys as this method’s parameter. If you define “Software\Company", the full path will be as follows: “HKEY_CURRENT_USER\Software\Company". If you wish to store a layout in another root key, e.g. HKLM, you should define the entire path such as “HKEY_LOCAL_MACHINE\Software\Company".

See Also