Spread for ASP.NET 8.0 Product Documentation
AllowLoadOnDemand Property (SheetView)
Example 


Gets or sets whether to allow incremental loads to the client on demand when the user is scrolling.
Syntax
'Declaration
 
Public Property AllowLoadOnDemand As Boolean
'Usage
 
Dim instance As SheetView
Dim value As Boolean
 
instance.AllowLoadOnDemand = value
 
value = instance.AllowLoadOnDemand
public bool AllowLoadOnDemand {get; set;}

Property Value

Boolean: true to allow users to set load on demand; false otherwise
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 Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

SheetView Class
SheetView Members

User-Task Documentation

Allowing Load on Demand

 

 


Copyright © GrapeCity, inc. All rights reserved.