Class OpenAsyncSettingsModel
Interface for a class OpenAsyncSettings.
Inherited Members
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public class OpenAsyncSettingsModel
Constructors
OpenAsyncSettingsModel()
Declaration
public OpenAsyncSettingsModel()
Properties
Enable
Gets or sets a value indicating whether to enable asynchronous page loading.
This property is intended to both document opening through the UI and the API (via the OpenAsync method).
When asynchronous loading is in progress, user interactions with the document
are restricted until the required pages are fully loaded.
Declaration
[JsonPropertyName("enable")]
public bool Enable { get; set; }
Property Value
| Type |
|---|
| bool |
IncrementalPageLoadCount
Gets or sets the number of pages to be incrementally loaded after the initial pages are loaded, during asynchronous document loading operation.
Declaration
[JsonPropertyName("incrementalPageLoadCount")]
public int IncrementalPageLoadCount { get; set; }
Property Value
| Type |
|---|
| int |
InitialPageLoadCount
Gets or sets the number of pages to be loaded initially during asynchronous document loading operation.
Declaration
[JsonPropertyName("initialPageLoadCount")]
public int InitialPageLoadCount { get; set; }
Property Value
| Type |
|---|
| int |