IVsTextMarkerClient.OnAfterSpanReload 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.
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.