NotebookSaveOptions.DeferredSaving Property

Aspose.Note for .NET API

NotebookSaveOptionsDeferredSaving Property

Gets or sets a value indicating whether children documents should be saved explicitly.

Namespace:  Aspose.Note.Saving
Assembly:  Aspose.Note (in Aspose.Note.dll) Version: 18.1
Syntax
public bool DeferredSaving { get; set; }
Public Property DeferredSaving As Boolean
	Get
	Set
public:
property bool DeferredSaving {
	bool get ();
	void set (bool value);
}
member DeferredSaving : bool with get, set

Property Value

Type: Boolean
Remarks
Default value is false, so child documents will be saved implicitly. Value true is indicating that user should save each notebook's child node explicitly. If notebook is saving to stream, the value is always true despite was explicitly set by user to false.
See Also