IVsDebugger2::CreateDataTip Method (String^, UInt32, IVsEnhancedDataTip^)

 

Creates an enhanced data tip object.

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

int CreateDataTip(
	String^ bstrExpression,
	unsigned int dwStyle,
	[OutAttribute] IVsEnhancedDataTip^% ppDataTip
)

Parameters

bstrExpression
Type: System::String^

[in] String containing the data tip.

dwStyle
Type: System::UInt32

[in] Reserved.

ppDataTip
Type: Microsoft.VisualStudio.Shell.Interop::IVsEnhancedDataTip^

[out] Pointer to the new IVsEnhancedDataTip interface.

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 IVsDebugger2::CreateDataTip(
   [in] BSTR bstrExpression,
   [in] VSEDT_STYLE dwStyle,
   [out]IVsEnhancedDataTip** ppDataTip
);
Return to top
Show: