IVsEnhancedDataTip::Show Method (IntPtr, array<POINT>^, array<RECT>^)

 

Displays the enhanced DataTip.

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

int Show(
	IntPtr hwndOwner,
	array<POINT>^ pptTopLeft,
	array<RECT>^ pHotRect
)

Parameters

hwndOwner
Type: System::IntPtr

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

pptTopLeft
Type: array<Microsoft.VisualStudio.OLE.Interop::POINT>^

[in] Pointer to a POINT structure indicating the location of the top left corner of the DataTip.

pHotRect
Type: array<Microsoft.VisualStudio.OLE.Interop::RECT>^

[in] Pointer to a RECT structure marking the hot area of the DataTip—the area where a mouse-click will be responded to.

Return Value

Type: System::Int32

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

From vsshell80.idl:

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