IVsSettingsWriter::WriteSettingAttribute Method (String^, String^, String^)
Visual Studio 2015
Namespace:
Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Return to top
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int WriteSettingAttribute(
String^ pszSettingName,
String^ pszAttributeName,
String^ pszSettingValue
)
Parameters
- pszSettingName
-
Type:
System::String^
[in] String uniquely identifying the data element to be stored.
- pszAttributeName
-
Type:
System::String^
[in] The attribute name.
- pszSettingValue
-
Type:
System::String^
[in] The value to be stored as the specified data element of the Visual Studio settings file.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT IVsSettingsWriter::WriteSettingAttribute( LPCOLESTR pszSettingName, LPCOLESTR pszAttributeName, LPCOLESTR pszSettingValue );
Show: