Sets the height in pixels for the specified rows on this sheet.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim row As Integer
Dim count As Integer
Dim value As Integer
instance.SetMultipleRowHeights(row, count, value) |
Parameters
- row
- Row index of first row
- count
- Number of rows for which to set the height
- value
- Height in pixels
Example
This example sets the height in pixels for the specified rows.
C# | Copy Code |
---|
fpSpread1.ActiveSheet.SetMultipleRowHeights(0, 2, 80); |
Visual Basic | Copy Code |
---|
FpSpread1.ActiveSheet.SetMultipleRowHeights(0, 2, 80) |
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also