Spread for ASP.NET 10 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > GetActiveRow |
Gets the index of the row of the active cell.
[JavaScript]
ret = FpSpread1.GetActiveRow;
None
Integer, row index of active cell
The row index is the index of the row on the displayed HTML page.
This is a sample that contains the property. On the client side, the script that contains the property would look like this:
JavaScript |
Copy Code
|
---|---|
<script type="text/javascript"> function getRow() { ret = FpSpread1.GetActiveRow; } </script> |