| Spread for ASP.NET 8.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Methods > Print | 
Prints the sheet.
[JavaScript]
FpSpread1.Print();
None
None
This method prints the sheet. This method causes a postback to occur.
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 onPrintButtonClick() {
       FpSpread1.Print();
   }
</SCRIPT>
                 | 
            |