NotebookLoadOptions.InstantLoading Property

Aspose.Note for .NET API

NotebookLoadOptionsInstantLoading Property

Gets or sets a value indicating whether children documents should be loaded while the parent document is loading.

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

Property Value

Type: Boolean
Remarks
Default value is false, so child documents will be loaded "lazily", i.e. their loading should be postponed until a direct access to specific child. Value true is indicating that their loading should be done immediately.
See Also