Spread for ASP.NET 8.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > GetLeftColIndex |
Gets the column number of the cell in the top left corner of the sheet.
[JavaScript]
var ret = FpSpread1.GetLeftColIndex();
None
Integer, index of the left column
This method returns the index of the left column.
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 getHValue() { var ss = document.getElementById("FpSpread1"); var totalRow = ss.GetLeftColIndex(); } </script> |