NotebookLoadOptions.DeferredLoading Property

Aspose.Note for .NET API

NotebookLoadOptionsDeferredLoading Property

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

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

Property Value

Type: Boolean
Remarks
Default value is false, so child documents will be loaded implicitly. Value true is indicating that user should call LoadChildDocument(String) or for each notebook's child node after notebook itself is loaded. If value is true, InstantLoading option will be ignored. If notebook is loading from stream, the value is always true despite was explicitly set by user to false.
See Also