Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxDockingManager.LoadLayoutFromRegistry(string) Method

Loads the layout of dock controls stored at the specified registry path.

#Declaration

Delphi
procedure LoadLayoutFromRegistry(ARegistryPath: string);

#Parameters

Name Type
ARegistryPath string

#Remarks

Use the LoadLayoutFromRegistry method to restore the layout of dock controls previously saved to a specific path in the registry using the SaveLayoutToRegistry method call. The source registry path is specified by the ARegistryPath parameter. If the specified path doesn’t exist or doesn’t contain dock controls layout settings, all dock panels become undocked. Please refer to the dock control’s UnDock method description for details on undocking panels.

Note

the LoadLayoutFromRegistry method loads setting only for the controls which reside on the same form as the docking manager. If the file contains settings for other controls these settings are ignored. To load the layout of all dock controls in the application, use the docking controller’s LoadLayoutFromRegistry method.

See Also