Compartilhar via


Método IVsSimpleBrowseComponentSet.FindComponent (Guid, VSCOMPONENTSELECTORDATA[], IVsNavInfo, VSCOMPONENTSELECTORDATA )

 

Localiza um componente do conjunto do componente.

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

Sintaxe

int FindComponent(
    [InAttribute] ref Guid guidLib,
    VSCOMPONENTSELECTORDATA[] pcsdComponent,
    out IVsNavInfo ppRealLibNavInfo,
    VSCOMPONENTSELECTORDATA[] pcsdExistingComponent
)
int FindComponent(
    [InAttribute] Guid% guidLib,
    array<VSCOMPONENTSELECTORDATA>^ pcsdComponent,
    [OutAttribute] IVsNavInfo^% ppRealLibNavInfo,
    array<VSCOMPONENTSELECTORDATA>^ pcsdExistingComponent
)
abstract FindComponent : 
        guidLib:Guid byref *
        pcsdComponent:VSCOMPONENTSELECTORDATA[] *
        ppRealLibNavInfo:IVsNavInfo byref *
        pcsdExistingComponent:VSCOMPONENTSELECTORDATA[] -> int
Function FindComponent (
    <InAttribute> ByRef guidLib As Guid,
    pcsdComponent As VSCOMPONENTSELECTORDATA(),
    <OutAttribute> ByRef ppRealLibNavInfo As IVsNavInfo,
    pcsdExistingComponent As VSCOMPONENTSELECTORDATA()
) As Integer

Parâmetros

  • guidLib
    [in]O Guid que identifica a biblioteca registrada.Pode ser GUID_NULL.
  • ppRealLibNavInfo
    [out] A IVsNavInfo interface dos componentes encontrados.
  • pcsdExistingComponent
    [in] A VSCOMPONENTSELECTORDATA valor que especifica os atributos do componente foi encontrado.

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 FindComponent(
    [in] REFGUID guidLib, 
    [in] VSCOMPONENTSELECTORDATA * pcsdComponent,
    [out] IVsNavInfo ** ppRealLibNavInfo,
    [out] VSCOMPONENTSELECTORDATA * pcsdExistingComponent
);

Consulte também

Interface IVsSimpleBrowseComponentSet
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo