IVsTipWindow::GetSizePreferences Method (array<RECT>^, array<TIPSIZEDATA>^)

 

Gets the size preferences for the ToolTip window.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

int GetSizePreferences(
	array<RECT>^ prcCtxBounds,
	array<TIPSIZEDATA>^ pSizeData
)

Parameters

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

[out] The bounding rectangle of the ToolTip window, in screen coordinates.

pSizeData
Type: array<Microsoft.VisualStudio.TextManager.Interop::TIPSIZEDATA>^

[out] Size and position of the ToolTip window. For a list of pSizeData values, see TIPSIZEDATA.

Return Value

Type: System::Int32

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

From textmgr.idl:

HRESULT IVsTipWindow::GetSizePreferences(
   [out] const RECT *prcCtxBounds,
   [out] TIPSIZEDATA *pSizeData
);

Implement this method to handle instances where the size preferences do not match the area available to display the ToolTip window. That is, it may not be possible to provide a ToolTip window of the requested size.

Return to top
Show: