Interface ISupportIncrementalLoading
Specifies a calling contract for collection views that support incremental loading.
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.WPF.dll
Syntax
public interface ISupportIncrementalLoading
Properties
HasMoreItems
Gets a boolean value indicating whether there is more items to load.
Declaration
bool HasMoreItems { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean | A boolean value indicating whether there is more items to load. |
Methods
LoadMoreItemsAsync(UInt32)
Loads the items asynchronously to the view.
Declaration
Task LoadMoreItemsAsync(uint count)
Parameters
| Type | Name | Description |
|---|---|---|
| System.UInt32 | count | The count of the items to be loaded. |
Returns
| Type |
|---|
| System.Threading.Tasks.Task |