# HideMessage

Use the AddKeyMap method to get a keyboard key which will cause an action. Learn its syntax and parameters in documentation.

## Content

Hides the error message from the ShowMessage method.

## Syntax

[JavaScript]

```javascript
FpSpread1.HideMessage(row,column);
```

## Parameters

***row***
Integer, row index
***column***
Integer, column index

## Return Type

None

## Remarks

This method hides the error message for the specified cell. This method does not cause a postback to occur.

## Example

This is a sample that contains the method. On the client side, the script that contains the method would look like this:

```javascript
<script type="text/javascript">
   function hide() {
     FpSpread1.HideMessage(1,1);
     }
</script>
```

## See Also

[GetHiddenValue](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members/clientscript-allmeths/CSSR-GetHiddenValue)
[ShowMessage](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members/clientscript-allmeths/CSSR-ShowMessage)
[Scripting Members](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members)