Spread for ASP.NET 11 Product Documentation
Rows
Spread for ASP.NET 11 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > Rows

Sets or returns the height of the row.

Syntax

[JavaScript]

FpSpread1.Rows(row);

Parameters

row
Integer, row index of row

Return Type

None

Remarks

This method sets the height of the row in pixels. This method does not cause a postback to occur.

Example

This is a sample that contains the method. On the client side, the script that contains the method would look like this:

JavaScript
Copy Code
<script type="text/javascript">
   function setHeight() {
       FpSpread1.Rows(10).SetHeight = 10;
   }
</script>
See Also