IPersistFileFormat::SaveCompleted Method (String^)

 

Notifies the object that it has concluded the Save transaction and that the object can write to its file.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

int SaveCompleted(
	String^ pszFilename
)

Parameters

pszFilename
Type: System::String^

[in] Pointer to the file name.

Return Value

Type: System::Int32

If 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.

Return to top
Show: