# TouchStripOpened

Learn the syntax and arguments for the TouchStripOpened event available in Spread for ASP.NET.

## Content

Occurs when Spread displays a touch strip.

## Syntax

[Inline HTML]

```html
<ELEMENT TouchStripOpened = "handler" ...>
```

[JavaScript]

```javascript
FpSpread1.addEventListener("TouchStripOpened", handler, ...)
```

or

```javascript
FpSpread1.onTouchStripOpened = handler
```

## Arguments

*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

## Return Type

None

## Remarks

This event is triggered when the touch menu is opened. The area argument can be TOUCHSTRIP\_CELL, TOUCHSTRIP\_ROW, TOUCHSTRIP\_COLUMN, or TOUCHSTRIP\_CHART.

## Example

This example JavaScript code maps the event for the Spread on the client side.

```javascript
<script type="text/javascript">

window.onload = function () {
    var spread = document.getElementById("FpSpread1");

    spread.addEventListener("TouchStripOpened", function (e) {

        if (e.Area == e.TOUCHSTRIP_CELL) {
            alert("opened");
        }

    });
}

</script>
```