Method of ITextDocument
Add new marker to the document
var ppMarker = TextDocument.AddMarker(pPosition, nImage, strDescription, nType);
==== Visual Basic Script ====
ppMarker = TextDocument.AddMarker pPosition, nImage, strDescription, nType
==== C++ ====
CComPtr<IMarker> pMarker; HRESULT hr = TextDocument.AddMarker(pPosition, nImage, strDescription, nType, &pMarker);
===== See Also ===== ITextDocument