Spread for ASP.NET 8.0 Product Documentation
SetRowHeight Method
Example 


Row index
Number of pixels for the height of the row

Sets the height of the specified row in pixels.

Syntax
'Declaration
 
Public Sub SetRowHeight( _
   ByVal row As Integer, _
   ByVal value As Integer _
) 
'Usage
 
Dim instance As SheetView
Dim row As Integer
Dim value As Integer
 
instance.SetRowHeight(row, value)
public void SetRowHeight( 
   int row,
   int value
)

Parameters

row
Row index
value
Number of pixels for the height of the row
Remarks

Get the height for a row by calling the GetRowHeight method.

Note: The value set by the SetRowHeight method does not include the width of the adjacent grid line.

The default height for rows in the sheet is determined by the DefaultRowHeight property.

If you prefer, you can allow users to resize rows by calling the SetRowSizeable method.

Set the width for a column by calling the SetColumnWidth method.

Example
This example illustrates the use of this member by setting the height for the specified row.
FarPoint.Web.Spread.SheetView sv;
sv = FpSpread1.ActiveSheetView;
sv.SetRowHeight(1, 40);
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
sv.SetRowHeight(1, 40)
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

Reference

SheetView Class
SheetView Members
GetRowHeight Method
SetColumnWidth Method
DefaultRowHeight Method
Height Property

User-Task Documentation

spweb-RowColSize.html

 

 


Copyright © GrapeCity, inc. All rights reserved.