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


Glossary Item Box

Gets or sets the hidden delay of the scrolling content tip in milliseconds.

Syntax

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

Property Value

Integer number of milliseconds to delay the scrolling (-1 means always show)

Remarks

This property sets when to display the scrolling content tip that can be displayed on the sheet.

Example

This example sets the ScrollingContentHiddenDelay property.
C#Copy Code
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}";
VB.NETCopy Code
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}"

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.