Share via


IVsEnhancedDataTip.Show Method

Displays the enhanced DataTip.

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

Syntax

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

Parameters

  • hwndOwner
    Type: IntPtr

    [in] The handle of the Window (HWND) in which to display the DataTip.

Return Value

Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell80.idl:

HRESULT IVsEnhancedDataTip::Show(
   [in] HWND hwndOwner, 
   [in] POINT* pptTopLeft, 
   [in] RECT* pHotRect
);

.NET Framework Security

See Also

Reference

IVsEnhancedDataTip Interface

Microsoft.VisualStudio.Shell.Interop Namespace