DialogPage::SettingsRegistryPath Property

 

Gets or sets the sub-key under the Visual Studio version-specific root for storing settings data for a dialog page.

Namespace:   Microsoft.VisualStudio.Shell
Assembly:  Microsoft.VisualStudio.Shell.14.0 (in Microsoft.VisualStudio.Shell.14.0.dll)

protected:
property String^ SettingsRegistryPath {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The sub-key of the Visual Studio version-specific registry tree that contain the settings for a given dialog page.

By default, the path is the full name of the Type that is returned by AutomationObject, which is obtained with AutomationObject.GetType().FullName.

The Visual Studio version-specific registry tree is HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\Version, where Version is the Visual Studio version. An alternate root can be specified when the Visual Studio shell is initialized. For more information, see Command-Line Switches (Visual Studio SDK).

Return to top
Show: