Spread for ASP.NET 11 Product Documentation
FrozenRowCount Property
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : FrozenRowCount Property
Gets or sets the number of frozen (non-scrollable) rows for this sheet.
Syntax
'Declaration
 
Public Property FrozenRowCount As Integer
'Usage
 
Dim instance As SheetView
Dim value As Integer
 
instance.FrozenRowCount = value
 
value = instance.FrozenRowCount
public int FrozenRowCount {get; set;}

Property Value

Integer number of rows to freeze
Remarks

This property (as well as any of the scroll bar related properties) does not have an effect on the Mozilla Firefox browser. Firefox does not support the CSS properties to handle this customization of the scrolling (or in this case non-scrolling).

Example
This example freezes columns and rows.
FpSpread1.Sheets[0].FrozenColumnCount = 1;
FpSpread1.Sheets[0].FrozenRowCount = 1; 
FpSpread1.Sheets(0).FrozenColumnCount = 1 
FpSpread1.Sheets(0).FrozenRowCount = 1
See Also

Reference

SheetView Class
SheetView Members

User-Task Documentation

Freezing Rows and Columns
Understanding Browser Support