Spread for ASP.NET 11 Product Documentation
ScrollingContentVisible Property
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : ScrollingContentVisible Property
Gets or sets a value that indicates whether to display the scrolling content tip.
Syntax
'Declaration
 
Public Property ScrollingContentVisible As Boolean
'Usage
 
Dim instance As SheetView
Dim value As Boolean
 
instance.ScrollingContentVisible = value
 
value = instance.ScrollingContentVisible
public bool ScrollingContentVisible {get; set;}

Property Value

Boolean: true to display the scrolling content tip; false otherwise
Remarks
This property sets whether to display the scrolling content tip that can be displayed on the sheet.
Example
This example sets the ScrollingContentVisible property.
FpSpread1.ActiveSheetView.RowCount = 50;
FpSpread1.ActiveSheetView.PageSize = 7;
FpSpread1.ActiveSheetView.AllowVirtualScrollPaging = true;
FpSpread1.ActiveSheetView.VirtualScrollPagingPrevRowCount = 5;
FpSpread1.ActiveSheetView.ScrollingContentVisible = true;
FpSpread1.ActiveSheetView.ScrollingContentHiddenDelay = 4000;
FpSpread1.ActiveSheetView.VirtualScrollPagingFormatString = "page {page} of {count}";
FpSpread1.ActiveSheetView.RowCount = 50
FpSpread1.ActiveSheetView.PageSize = 7
FpSpread1.ActiveSheetView.AllowVirtualScrollPaging = True
FpSpread1.ActiveSheetView.VirtualScrollPagingPrevRowCount = 5
FpSpread1.ActiveSheetView.ScrollingContentVisible = True
FpSpread1.ActiveSheetView.ScrollingContentHiddenDelay = 4000
FpSpread1.ActiveSheetView.VirtualScrollPagingFormatString = "page {page} of {count}"
See Also

Reference

SheetView Class
SheetView Members