IVsTextMarkerClientAdvanced.OnMarkerTextChanged(IVsTextMarker) Method

Definition

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  
);  

Applies to