Spread for ASP.NET 10 Product Documentation
LoadRowIncrement Property (SheetView)
Example 


Gets or sets the number of rows to include in incremental loads on demand.
Syntax
'Declaration
 
Public Property LoadRowIncrement As Integer
'Usage
 
Dim instance As SheetView
Dim value As Integer
 
instance.LoadRowIncrement = value
 
value = instance.LoadRowIncrement
public int LoadRowIncrement {get; set;}

Property Value

Integer number or rows to load for each increment after initial load
Example
FpSpread1.ActiveSheetView.RowCount = 200;
FpSpread1.ActiveSheetView.AllowLoadOnDemand = true;
FpSpread1.ActiveSheetView.PageSize = 50;
FpSpread1.ActiveSheetView.LoadInitRowCount = 20;
FpSpread1.ActiveSheetView.LoadRowIncrement = 10;
FpSpread1.ActiveSheetView.RowCount = 200
FpSpread1.ActiveSheetView.AllowLoadOnDemand = True
FpSpread1.ActiveSheetView.PageSize = 50
FpSpread1.ActiveSheetView.LoadInitRowCount = 20
FpSpread1.ActiveSheetView.LoadRowIncrement = 10
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

SheetView Class
SheetView Members

User-Task Documentation

Allowing Load on Demand

 

 


Copyright © GrapeCity, inc. All rights reserved.