Método IVsWritableSettingsStore.SetInt64 (String, String, Int64)

 

Define o valor de uma propriedade de número inteiro de 64 bits.Se o tipo de dados anterior da propriedade não for SettingsType_Int64, substitui-lo.Se não existir a propriedade cria um.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.10.0 (em Microsoft.VisualStudio.Shell.Interop.10.0.dll)

Sintaxe

int SetInt64(
    string collectionPath,
    string propertyName,
    long value
)
int SetInt64(
    String^ collectionPath,
    String^ propertyName,
    long long value
)
abstract SetInt64 : 
        collectionPath:string *
        propertyName:string *
        value:int64 -> int
Function SetInt64 (
    collectionPath As String,
    propertyName As String,
    value As Long
) 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