Spread ASP.NET 6.0 Product Documentation
AllowLoadOnDemand Property
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : AllowLoadOnDemand Property


Glossary Item Box

Gets or sets whether to allow incremental loads to the client on demand when the user is scrolling.

Syntax

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

Property Value

Boolean: true to allow users to set load on demand; false otherwise

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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.