Método IVsWritableSettingsStore.GetBoolOrDefault (String, String, Int32, Int32)
Retorna um valor de propriedade do tipo booleano ou um valor padrão especificado.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (em Microsoft.VisualStudio.Shell.Interop.10.0.dll)
Sintaxe
int GetBoolOrDefault(
string collectionPath,
string propertyName,
int defaultValue,
out int value
)
int GetBoolOrDefault(
String^ collectionPath,
String^ propertyName,
int defaultValue,
[OutAttribute] int% value
)
abstract GetBoolOrDefault :
collectionPath:string *
propertyName:string *
defaultValue:int *
value:int byref -> int
Function GetBoolOrDefault (
collectionPath As String,
propertyName As String,
defaultValue As Integer,
<OutAttribute> ByRef value As Integer
) As Integer
Parâmetros
- collectionPath
[in] O caminho da coleção.
- propertyName
[in] O nome da propriedade.
- defaultValue
[in] O valor padrão para retornar se a propriedade não está definida.
- value
[out] O valor.
Valor de retorno
Type: System.Int32
Retorna S_OK se a propriedade foi retornada, S_FALSE se a propriedade não existir ou F:Microsoft.VisualStudio.E_INVALIDARG se o tipo de propriedade não é booleano.
Implementações
IVsSettingsStore.GetBoolOrDefault(String, String, Int32, Int32)
Comentários
Se a propriedade foi armazenada como um valor inteiro com sinal ou, a semântica de conversão de tipo C++ regular é aplicada no valor de saída.
Consulte também
Interface IVsWritableSettingsStore
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo