Spread for ASP.NET 7.0 Product Documentation
LoadRowIncrement Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : LoadRowIncrement Property


Glossary Item Box

Gets or sets the number of rows to include in incremental loads on demand.

Syntax

Visual Basic (Declaration) 
Public Property LoadRowIncrement As Integer
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim value As Integer
 
instance.LoadRowIncrement = value
 
value = instance.LoadRowIncrement
C# 
public int LoadRowIncrement {get; set;}

Property Value

Integer number or rows to load for each increment after initial load

Example

C#Copy Code
FpSpread1.ActiveSheetView.RowCount = 200;
FpSpread1.ActiveSheetView.AllowLoadOnDemand = true;
FpSpread1.ActiveSheetView.PageSize = 50;
FpSpread1.ActiveSheetView.LoadInitRowCount = 20;
FpSpread1.ActiveSheetView.LoadRowIncrement = 10;
Visual BasicCopy Code
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 Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.