Spread for ASP.NET 8.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > Rows |
Sets or returns the height of the row.
[JavaScript]
FpSpread1.Rows(row);
None
This method sets the height of the row in pixels. This method does not cause a postback to occur.
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 language=javascript>
function setHeight() {
FpSpread1.Rows(10).SetHeight = 10;
}
</SCRIPT>
|