Sdílet prostřednictvím


IVsDebugger.GetDataTipValue – metoda (IVsTextLines, TextSpan , String, String)

 

Načte ladicí program text tipu data pro vybranou část textu.

Obor názvů:   Microsoft.VisualStudio.Shell.Interop
Sestavení:  Microsoft.VisualStudio.Shell.Interop (v Microsoft.VisualStudio.Shell.Interop.dll)

Syntaxe

int GetDataTipValue(
    IVsTextLines pTextBuf,
    TextSpan[] pTS,
    string pszExpression,
    out string pbstrValue
)
int GetDataTipValue(
    IVsTextLines^ pTextBuf,
    array<TextSpan>^ pTS,
    String^ pszExpression,
    [OutAttribute] String^% pbstrValue
)
abstract GetDataTipValue : 
        pTextBuf:IVsTextLines *
        pTS:TextSpan[] *
        pszExpression:string *
        pbstrValue:string byref -> int
Function GetDataTipValue (
    pTextBuf As IVsTextLines,
    pTS As TextSpan(),
    pszExpression As String,
    <OutAttribute> ByRef pbstrValue As String
) As Integer

Parametry

  • pTextBuf
    [v] Ukazatel IVsTextLines rozhraní do vyrovnávací paměti text.
  • pTS
    [v] Ukazatel TextSpan struktury s popisem umístění textu ve vyrovnávací paměti.Může být null při použití pszExpression argument.
  • pszExpression
    [v] Text text tipu data načíst výraz.Může být null při použití pTS argument.
  • pbstrValue
    [výstup] Ukazatel na řetězec obsahující text tipu data.

Vrácená hodnota

Type: System.Int32

Pokud metoda uspěje, vrací TIP_S_NODEFAULTTIP.Pokud se nezdaří, vrátí kód chyby.

Poznámky

Podpis COM

Z vsshell.idl:

HRESULT IVsDebugger::GetDataTipValue(
   [in] IVsTextLines *pTextBuf,
   [in] const TextSpan *pTS,
   [in] WCHAR *pszExpression,
   [out] BSTR *pbstrValue
);

Viz také

IVsDebugger – rozhraní
Microsoft.VisualStudio.Shell.Interop – obor názvů

Zpátky na začátek