Upravit

Sdílet prostřednictvím


SaveEvent.PerformSaveOperation Method

Definition

Performs the save operation requested by the user.

public:
 bool PerformSaveOperation();
public bool PerformSaveOperation ();
abstract member PerformSaveOperation : unit -> bool
Public Function PerformSaveOperation () As Boolean

Returns

true if the save operation is successful; if the user cancels the operation by clicking Cancel in the Save As dialog box, returns false.

Examples

In the following example, the PerformSaveOperation method of the SaveEventObject object is used to save the form using the internal definition of save.

e.<span class="label">PerformSaveOperation</span>();

Remarks

The PerformSaveOperation method performs a "save" or "save as" operation depending on the value of the IsSaveAs property. If the operation is successful, the IsDirty property is set to false and the PerformSaveOperation method returns true.

Important: This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

Applies to