Skip to main content

ChartWizard.SaveLayoutToRegistry(String) Method

Enables you to save the Wizard’s layout to a system registry path.

Namespace: DevExpress.XtraCharts.Wizard

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

NuGet Package: DevExpress.Win.Charts

Declaration

public void SaveLayoutToRegistry(
    string path
)

Parameters

Name Type Description
path String

A string value specifying the system registry path to which the layout is saved.

Remarks

Use the SaveLayoutToRegistry method to save the Wizard’s layout to the system registry. You can then restore these settings using the ChartWizard.LoadLayoutFromRegistry method.

You can define whole and partial registry keys as the parameter. For instance, specifying “Software\MyCompany\MyProject" as a partial key will result in saving settings to the “HKEY_CURRENT_USER\Software\MyCompany\MyProject" path. You can also specify the entire path if you need to store the layout under a root key different from HKCU.

The method saves the position and dimensions of the Wizard window, as well as the splitter location on the page.

See Also