Spread ASP.NET 6.0 Product Documentation
RemoveKeyMap
Send Feedback
Spread ASP.NET 6.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > RemoveKeyMap

Glossary Item Box

This method allows you to remove an assigned action from a mapped keyboard key.

Syntax

[JavaScript]

FpSpread1.RemoveKeyMap(keycode,ctrl,shift,alt);

Parameters

keycode
Integer, key being pressed
ctrl
Boolean, Control key
shift
Boolean, Shift key
alt
Boolean, Alt key

Return Type

None

Remarks

This method allows you to remove an action from a mapped key.

Example

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>

See Also

MoveToPrevRow | ScrollTo | Scripting Members

© 2002-2012 GrapeCity, Inc. All Rights Reserved.