'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;}
'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;}
Exception | Description |
---|---|
System.ArgumentOutOfRangeException | Specified value is out of range; must be greater than or equal to zero |
This property freezes the first m rows between the headers and the first scrollable viewport similar to how the frozen trailing property (FrozenTrailingRowCount) freezes the last n rows between the last scrollable viewport and the scroll bars.
fpSpread1.ActiveSheet.FrozenColumnCount = 10; fpSpread1.ActiveSheet.FrozenRowCount = 10;
FpSpread1.ActiveSheet.FrozenColumnCount = 10 FpSpread1.ActiveSheet.FrozenRowCount = 10