Interface ISupportIncrementalLoading
Specifies a calling contract for collection views that support incremental loading.
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.Portable.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
void LoadMoreItemsAsync(uint count)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.UInt32 | count | The count of the items to be loaded.  |