Returns a range of characters that were added by using the IDebugDocumentHelper::AddDeferredText method, in the original host document.

HRESULT GetDeferredText(
   DWORD              dwTextStartCookie,
   WCHAR*             pcharText,
   SOURCE_TEXT_ATTR*  pstaTextAttr,
   ULONG*             pcNumChars,
   ULONG              cMaxChars
);

Parameters

dwTextStartCookie

[in] Host-defined cookie that represents the starting position of the text.

pcharText

[in, out] A character text buffer. This method does not return characters if this parameter is NULL.

pstaTextAttr

[in, out] A character attribute buffer. This method does not return attributes if this parameter is NULL.

pcNumChars

[in, out] Indicates the actual number of characters/attributes returned. This parameter must be set to zero before calling this method.

cMaxChars

[in] The maximum number of characters to return.

Expand imageReturn Value

Expand imageRemarks

Expand imageSee Also