IPersistFileFormat::SaveCompleted Method (String^)
Visual Studio 2015
Notifies the object that it has concluded the Save transaction and that the object can write to its file.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- pszFilename
-
Type:
System::String^
[in] Pointer to the file name.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From fpstfmt.idl:
HRESULT IPersistFileFormat::SaveCompleted(
[in] LPCOLESTR pszFilename
);
This method is similar to IPersistFile.SaveCompletedThe save action is accomplished by notifying the object that it can revert from NoScribble mode, in which it must not write to its file, to Normal mode, in which it can write to its file. The component enters NoScribble mode when it receives an Save call.
Show: