Partager via


IPersistFileFormat.SaveCompleted Method

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)

Syntax

'Déclaration
Function SaveCompleted ( _
    pszFilename As String _
) As Integer
'Utilisation
Dim instance As IPersistFileFormat
Dim pszFilename As String
Dim returnValue As Integer

returnValue = instance.SaveCompleted(pszFilename)
int SaveCompleted(
    string pszFilename
)
int SaveCompleted(
    [InAttribute] String^ pszFilename
)
function SaveCompleted(
    pszFilename : String
) : int

Parameters

Return Value

Type: System.Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

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.

Permissions

See Also

Reference

IPersistFileFormat Interface

IPersistFileFormat Members

Microsoft.VisualStudio.Shell.Interop Namespace