Método IVsEnhancedDataTip.Show (IntPtr, POINT[], RECT )

 

Exibe o DataTip Avançada.

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

Sintaxe

int Show(
    IntPtr hwndOwner,
    POINT[] pptTopLeft,
    RECT[] pHotRect
)
int Show(
    IntPtr hwndOwner,
    array<POINT>^ pptTopLeft,
    array<RECT>^ pHotRect
)
abstract Show : 
        hwndOwner:nativeint *
        pptTopLeft:POINT[] *
        pHotRect:RECT[] -> int
Function Show (
    hwndOwner As IntPtr,
    pptTopLeft As POINT(),
    pHotRect As RECT()
) As Integer

Parâmetros

  • hwndOwner
    [in] O identificador da janela (HWND) no qual exibir o DataTip.
  • pptTopLeft
    [in] Ponteiro para uma estrutura de ponto que indica o local do canto superior esquerdo do DataTip.
  • pHotRect
    [in] Ponteiro para uma estrutura RECT marcando a área de hot do DataTip — a área onde um clique do mouse será respondido.

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 IVsEnhancedDataTip::Show(
   [in] HWND hwndOwner, 
   [in] POINT* pptTopLeft, 
   [in] RECT* pHotRect
);

Consulte também

Interface IVsEnhancedDataTip
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo