Método IVsWritableSettingsStore.SetBool (String, String, Int32)
Define o valor de uma propriedade booleana.Se o tipo de dados anterior da propriedade não for SettingsType_Int, este método substitui-lo.Se não tiver a propriedade, existir, ela será criada.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (em Microsoft.VisualStudio.Shell.Interop.10.0.dll)
Sintaxe
int SetBool(
string collectionPath,
string propertyName,
int value
)
int SetBool(
String^ collectionPath,
String^ propertyName,
int value
)
abstract SetBool :
collectionPath:string *
propertyName:string *
value:int -> int
Function SetBool (
collectionPath As String,
propertyName As String,
value As Integer
) 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.E_INVALIDARG.
Consulte também
Interface IVsWritableSettingsStore
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo