Gets or sets the number of frozen (non-scrollable) rows for this sheet.
Syntax
Visual Basic (Declaration) | |
---|
Public Property FrozenRowCount As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim value As Integer
instance.FrozenRowCount = value
value = instance.FrozenRowCount |
C# | |
---|
public int FrozenRowCount {get; set;} |
Property Value
Integer number of rows to freeze
Remarks
Example
This example freezes columns and rows.
C# | Copy Code |
---|
FpSpread1.Sheets[0].FrozenColumnCount = 1;
FpSpread1.Sheets[0].FrozenRowCount = 1;
|
Visual Basic | Copy Code |
---|
FpSpread1.Sheets(0).FrozenColumnCount = 1
FpSpread1.Sheets(0).FrozenRowCount = 1
|
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