IPersistFileSave Method

Saves a copy of the object to the specified file.

Definition

Namespace: DevCase.Win32.Interfaces
Assembly: 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
)

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.

See Also