IVsTextBufferDataEvents::OnLoadCompleted Method (Int32)
Visual Studio 2015
Notifies client when the buffer is initialized.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Parameters
- fReload
-
Type:
System::Int32
[in] Specifies that the load was a result of a reload and not a "fresh" load.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From textmgr.idl:
HRESULT IVsTextBufferDataEvents::OnLoadCompleted(
[in] BOOL fReload
);
In the non-reload case, if any of the event sinks return an error HRESULT from OnLoadCompleted, the corresponding Load [document data] call returns with that same error HRESULT. In the reload scenario, the return value is ignored.
Show: