[]
Occurs when Spread closes a touch strip.
[Inline HTML]
<ELEMENT TouchStripClosed = "handler" ...>
[JavaScript]
FpSpread1.addEventListener("TouchStripClosed", handler, ...)
or
FpSpread1.onTouchStripClosed = handler
event.Area
Location of the touch click
event.spread
Spread that raises the event
event.TouchStrip
Gets the TouchStrip instance that represents the touch menu bar
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.
<script type="text/javascript">
window.onload = function () {
var spread = document.getElementById("FpSpread1");
spread.addEventListener("TouchStripClosed", function (e) {
if (e.Area == e.TOUCHSTRIP_CELL) {
alert("closed");
}
});
}
</script>