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 language=javascript>
function setHeight() {
FpSpread1.Rows(10).SetHeight = 10;
}
</SCRIPT>
|