Método IVsWritableSettingsStore.GetIntOrDefault (String, String, Int32, Int32)
Retorna uma propriedade do tipo inteiro 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 GetIntOrDefault(
string collectionPath,
string propertyName,
int defaultValue,
out int value
)
int GetIntOrDefault(
String^ collectionPath,
String^ propertyName,
int defaultValue,
[OutAttribute] int% value
)
abstract GetIntOrDefault :
collectionPath:string *
propertyName:string *
defaultValue:int *
value:int byref -> int
Function GetIntOrDefault (
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 for um inteiro.
Implementações
IVsSettingsStore.GetIntOrDefault(String, String, Int32, Int32)
Comentários
Se a propriedade foi armazenada como um valor não assinado, 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