AceoffixCtrlJsFunction_OnExcelCellClick Property |
Namespace: Aceoffix
This event is triggered when user clicks the cell in Excel document.
If you want to capture this event, you should define a JavaScript function in the ASPX file of the current file.
In the JavaScript function, you can return a value to set the value of the current Cell.
The following code example shows how to use the JsFunction_OnExcelCellClick property.
AceoffixCtrl1.JsFunction_OnExcelCellClick = "OnExcelCellClick()";
And then, you should define the OnExcelCellClick() JavaScript function in ASPX file of current page.
<script language="javascript" type="text/javascript"> function OnExcelCellClick(CellAddress, Value, Left, Bottom) { if (CellAddress == "$B$5") { return "Developer can raise a dialog box at here and get the value input by user."; } } </script>