| Visual Basic (Declaration) | |
|---|---|
Public Property FrozenTrailingRowCount As Integer | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
public int FrozenTrailingRowCount {get; set;} | |
Return Value
Integer number of frozen rows| Exception | Description |
|---|---|
| ArgumentOutOfRangeException | Specified value is out of range; must be greater than or equal to zero |
This example sets frozen trailing rows and columns.
| C# | Copy Code |
|---|---|
fpSpread1.Sheets[0].FrozenTrailingColumnCount
= 1; | |
| Visual Basic | Copy Code |
|---|---|
FpSpread1.Sheets(0).FrozenTrailingColumnCount = 1 | |
This property freezes the last n rows between the last scrollable viewport and the scroll bars similar to how the frozen leading property (FrozenRowCount) freezes the first m rows between the headers and the first scrollable viewport.
Reference
SheetView ClassSheetView Members