This topic has not yet been rated - Rate this topic

IVsTextManager.SetUserPreferences Method

Sets user preferences.

Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
int SetUserPreferences(
	VIEWPREFERENCES[] pViewPrefs,
	FRAMEPREFERENCES[] pFramePrefs,
	LANGPREFERENCES[] pLangPrefs,
	FONTCOLORPREFERENCES[] pColorPrefs
)

Parameters

pViewPrefs
Type: 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: 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: 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: 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: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

COM Signature

From textmgr.idl:

HRESULT IVsTextManager::SetUserPreferences(
   [in] const VIEWPREFERENCES * pViewPrefs,
   [in] const FRAMEPREFERENCES * pFramePrefs,
   [in] const LANGPREFERENCES * pLangPrefs,
   [in] const FONTCOLORPREFERENCES * pColorPrefs
);
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.