Método IVsWritableSettingsStore.SetInt (String, String, Int32)
Publicado: abril de 2016
Define o valor de uma propriedade de inteiro. 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 será criado.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (em Microsoft.VisualStudio.Shell.Interop.10.0.dll)
Sintaxe
int SetInt(
string collectionPath,
string propertyName,
int value
)
int SetInt(
String^ collectionPath,
String^ propertyName,
int value
)
abstract SetInt :
collectionPath:string *
propertyName:string *
value:int -> int
Function SetInt (
collectionPath As String,
propertyName As String,
value As Integer
) As Integer
Parâmetros
collectionPath
Type: System.String[in] O caminho para a coleção.
propertyName
Type: System.String[in] A propriedade.
value
Type: System.Int32[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 existir, o método retorna T:Microsoft.VisualStudio.VSConstants.E_INVALIDARG.
Consulte também
Interface IVsWritableSettingsStore
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo