Spread for ASP.NET 8.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > RemoveKeyMap |
This method allows you to remove an assigned action from a mapped keyboard key.
[JavaScript]
FpSpread1.RemoveKeyMap(keycode,ctrl,shift,alt);
None
This method allows you to remove an action from a mapped key.
This is a sample that contains the method. On the client side, the script that contains the method would look like this:
JavaScript |
Copy Code
|
---|---|
<SCRIPT language=javascript> function setMap() { var ss = document.getElementById("FpSpread1"); if (ss != null){ ss.RemoveKeyMap(13,true,true,false); } </SCRIPT> |