IPersistFileSave Method
Saves a copy of the object to the specified file.
Namespace: DevCase.Win32.InterfacesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[PreserveSigAttribute]
void Save(
string fileName,
bool remember
)
<PreserveSigAttribute>
Sub Save (
fileName As String,
remember As Boolean
)
Dim instance As IPersistFile
Dim fileName As String
Dim remember As Boolean
instance.Save(fileName, remember)
[PreserveSigAttribute]
void Save(
[InAttribute] String^ fileName,
[InAttribute] bool remember
)
[<PreserveSigAttribute>]
abstract Save :
fileName : string *
remember : bool -> unit
No code example is currently available or this language may not be supported.
Parameters
- fileName String
-
The absolute path of the file to which the object should be saved.
If fileName is ,
the object should save its data to the current file, if there is one.
- remember Boolean
-
Indicates whether the fileName parameter is to be used as the current working file.
If , fileName becomes the current file and the
object should clear its dirty flag after the save.
If , this save operation is a Save A Copy As ... operation.
In this case, the current file is unchanged and the object should not clear its dirty flag.
If fileName is ,
the implementation should ignore the remember flag.