Spread for ASP.NET 8.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Properties > TapToAddSelection |
Gets or sets whether to allow adding a selection by tapping.
[JavaScript]
ret = FpSpread1.TapToAddSelection;
Boolean, true to allow tap to add selection; otherwise, false
Boolean, true to allow tap to add selection; otherwise, false
When this property is true, tap is similar to Ctrl + Click.
This is a sample that contains the property. On the client side, the script that contains the property would look like this:
JavaScript |
Copy Code
|
---|---|
<SCRIPT language=javascript> function tap() { FpSpread1.TabToAddSelection = true; } </SCRIPT> |