IVsTextMarkerClient.OnAfterSpanReload Method

Definition

Signals that the text under the marker has been altered but the marker has not been deleted.

public:
 void OnAfterSpanReload();
public:
 void OnAfterSpanReload();
void OnAfterSpanReload();
public void OnAfterSpanReload ();
abstract member OnAfterSpanReload : unit -> unit
Public Sub OnAfterSpanReload ()

Remarks

COM Signature

From textmgr.idl:

HRESULT IVsTextMarkerClient::OnAfterSpanReload();  

OnAfterSpanReload is called in response to a call from ReloadLines or ReloadStream. These methods modify the text, but do not modify the marker, and as such, the marker type and position may not be correct. Use this notification to correct the marker position and type, if necessary.

Applies to