# Rows

Use the Rows method to set or return the height of the row. Learn its syntax and parameters in documentation.

## Content

Sets or returns the height of the row.

## Syntax

[JavaScript]

```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
<script type="text/javascript">
   function setHeight() {
       FpSpread1.Rows(10).SetHeight = 10;
   }
</script>
```

## See Also

[MoveToNextRow](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members/clientscript-allmeths/CSSR-MoveToNextRow)
[Columns](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members/clientscript-allmeths/CSSR-Columns)
[Scripting Members](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members)