IVsTextMarkerClientAdvanced.OnMarkerTextChanged(IVsTextMarker) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Fires when the text on the same line as the marker has changed.
public:
int OnMarkerTextChanged(Microsoft::VisualStudio::TextManager::Interop::IVsTextMarker ^ pMarker);
public:
int OnMarkerTextChanged(Microsoft::VisualStudio::TextManager::Interop::IVsTextMarker ^ pMarker);
int OnMarkerTextChanged(Microsoft::VisualStudio::TextManager::Interop::IVsTextMarker const & pMarker);
public int OnMarkerTextChanged (Microsoft.VisualStudio.TextManager.Interop.IVsTextMarker pMarker);
abstract member OnMarkerTextChanged : Microsoft.VisualStudio.TextManager.Interop.IVsTextMarker -> int
Public Function OnMarkerTextChanged (pMarker As IVsTextMarker) As Integer
Parameters
- pMarker
- IVsTextMarker
[in] Pointer to the IVsTextMarker interface for the marker.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
void IVsTextMarkerClientAdvanced::OnMarkerTextChanged(
[in] IVsTextMarker* pMarker
);