Método IVsWritableSettingsStore.SetString (String, String, String)
Define o valor de uma propriedade de seqüência de caracteres.Se o tipo de dados anterior da propriedade não for SettingsType_String, este método substitui-lo.Se a propriedade não existir, ele criará uma.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (em Microsoft.VisualStudio.Shell.Interop.10.0.dll)
Sintaxe
int SetString(
string collectionPath,
string propertyName,
string value
)
int SetString(
String^ collectionPath,
String^ propertyName,
String^ value
)
abstract SetString :
collectionPath:string *
propertyName:string *
value:string -> int
Function SetString (
collectionPath As String,
propertyName As String,
value As String
) As Integer
Parâmetros
- collectionPath
[in] O caminho para a coleção.
- propertyName
[in] A propriedade.
- value
[in] O valor.
Valor de retorno
Type: System.Int32
Retorna T:Microsoft.VisualStudio.VSConstants.S_OK se o valor foi definido.Se a coleção não existe, o método retorna T:Microsoft.VisualStudio.VSConstants.E_INVALIDARG.
Consulte também
Interface IVsWritableSettingsStore
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo