Método IVsSimpleLibrary2.GetSupportedCategoryFields2 (Int32, UInt32)
Retorna os valores de categoria suportados pela biblioteca para uma categoria especificada.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Sintaxe
int GetSupportedCategoryFields2(
int Category,
out uint pgrfCatField
)
int GetSupportedCategoryFields2(
int Category,
[OutAttribute] unsigned int% pgrfCatField
)
abstract GetSupportedCategoryFields2 :
Category:int *
pgrfCatField:uint32 byref -> int
Function GetSupportedCategoryFields2 (
Category As Integer,
<OutAttribute> ByRef pgrfCatField As UInteger
) As Integer
Parâmetros
- Category
[in] Especifica o tipo de categoria de uma biblioteca.Valores são obtidas a partir do _LIB_CATEGORY2 enumeração.
- pgrfCatField
[out] Ponteiro para um objeto de campo de categoria.Consulte os comentários para obter valores possíveis.
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 vsshell80.idl:
HRESULT IVsSimpleLibrary2::GetSupportedCategoryFields2(
[in] LIB_CATEGORY2 Category,
[out, retval] DWORD *pgrfCatField
);
Assign the pCatField parameter a value of _LIBCAT_MEMBERTYPE, _LIBCAT_MEMBERACCESS, _LIBCAT_CLASSTYPE, _LIBCAT_CLASSACCESS, _LIBCAT_ACTIVEPROJECT, _LIB_LISTTYPE, _LIBCAT_VISIBILITY, or _LIBCAT_MODIFIERTYPE based on the value passed in through the Category parameter.Tipos de categoria são enumerados na _LIB_CATEGORY2 enumeração.
Retornar E_FAIL se não há suporte para uma categoria.
Consulte também
Interface IVsSimpleLibrary2
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo