Compartilhar via


Método IVsWritableSettingsStore.SetUnsignedInt (String, String, UInt32)

 

Define o valor de uma propriedade de inteiro não assinado.Se o tipo de dados anterior da propriedade não for SettingsType_Int, 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 SetUnsignedInt(
    string collectionPath,
    string propertyName,
    uint value
)
int SetUnsignedInt(
    String^ collectionPath,
    String^ propertyName,
    unsigned int value
)
abstract SetUnsignedInt : 
        collectionPath:string *
        propertyName:string *
        value:uint32 -> int
Function SetUnsignedInt (
    collectionPath As String,
    propertyName As String,
    value As UInteger
) 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