Occurs when Spread closes a touch strip.
[Inline HTML]
<ELEMENT TouchStripClosed = "handler" ...>
[JavaScript]
FpSpread1.addEventListener("TouchStripClosed", handler, ...)
or
FpSpread1.onTouchStripClosed = handler
None
This event is triggered when the touch menu is closed. The area argument can be TOUCHSTRIP_CELL, TOUCHSTRIP_ROW, TOUCHSTRIP_COLUMN, or TOUCHSTRIP_CHART.
This example JavaScript code maps the event for the Spread on the client side.
JavaScript |
Copy Code
|
---|---|
<script type="text/javascript"> window.onload = function () { </script> |