Método IVsUserContext.RemoveAttribute (String, String)
Publicado: abril de 2016
Remove um conjunto de propriedades de contexto ou subcontexto um atributo ou palavra-chave.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int RemoveAttribute(
string szName,
string szValue
)
int RemoveAttribute(
String^ szName,
String^ szValue
)
abstract RemoveAttribute :
szName:string *
szValue:string -> int
Function RemoveAttribute (
szName As String,
szValue As String
) As Integer
Parâmetros
- szName
[in] Nome do atributo ou palavra-chave a ser removido.
- szValue
[in] O atributo de valor a ser removido.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De context.idl:
HRESULT IVsUserContext::RemoveAttribute(
[in] LPCOLESTR szName,
[in] LPCOLESTR szValue
);
Chamando IVsUserContext.RemoveAttribute(szName, null) remove todos os valores para um determinado atributo; chamando IVsUserContext.RemoveAttribute(null, null) remove todos os atributos do conjunto de contexto.
Use o RemoveAttributeIncludeChildren método para além disso, remover atributos ou palavras-chave de associados a bolsa subcontexto ou bolsas.
Consulte também
Interface IVsUserContext
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo