VsTextPackageClass::SetUserPreferences Method (array<VIEWPREFERENCES>^, array<FRAMEPREFERENCES>^, array<LANGPREFERENCES>^, array<FONTCOLORPREFERENCES>^)

 

Sets user preferences.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

public:
virtual int SetUserPreferences(
	array<VIEWPREFERENCES>^ pViewPrefs,
	array<FRAMEPREFERENCES>^ pFramePrefs,
	array<LANGPREFERENCES>^ pLangPrefs,
	array<FONTCOLORPREFERENCES>^ pColorPrefs
)

Parameters

pViewPrefs
Type: array<Microsoft.VisualStudio.TextManager.Interop::VIEWPREFERENCES>^

[in] Values that describe the desired default view flags for all editor views. For more information, see VIEWPREFERENCES. Can be null if view preferences are not being set.

pFramePrefs
Type: array<Microsoft.VisualStudio.TextManager.Interop::FRAMEPREFERENCES>^

[in] Values that describe the desired default flags for all editor frames. For more information, see FRAMEPREFERENCES. Can be null if frame preferences are not being set.

pLangPrefs
Type: array<Microsoft.VisualStudio.TextManager.Interop::LANGPREFERENCES>^

[in] Values that describe the desired flags for the language specified in the structure. For more information, see LANGPREFERENCES. Can be null if language preferences are not being set.

pColorPrefs
Type: array<Microsoft.VisualStudio.TextManager.Interop::FONTCOLORPREFERENCES>^

[in] Values that describe the color and font preferences for all editor views. This parameter is for internal editor use only. Should be null when this method is called by external packages. For more information, see FONTCOLORPREFERENCES.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Return to top
Show: