Spread for ASP.NET 7.0 Product Documentation
ShowMessage
See Also Support Options
Spread for ASP.NET 7.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > ShowMessage

Glossary Item Box

Shows an error message.

Syntax

[JavaScript]

FpSpread1.ShowMessage(message,row,column,time);

Parameters

message
String, message text
row
Integer, row index
column
Integer, column index
time
Integer, time (optional)

Return Type

None

Remarks

This method shows an error message. The time is the number of milliseconds the message box will stay visible. The time parameter is optional. 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 Copy Code
<SCRIPT language=javascript>
   function show() {
     FpSpread1.ShowMessage(“test”,1,1,500);
     }
</SCRIPT>

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.