[DevExpress Support Team: CLONED FROM T185167: How to adjust ASPxSpreadsheet to the Full Screen on the page load]
Please provide sample code on how to implement the full screen mode in web page of Spreadsheet using ASP MVC C3
How to adjust Spreadsheet to the Full Screen on the page load
Answers approved by DevExpress Support
Hello,
Use the following code to implement this task in MVC:
C#settings.ClientSideEvents.Init="function(s, e){ s.SetFullscreenMode(true); }" ;
Should you have any further questions, feel free to contact us.
Other Answers
Thank you Larry. Works as expected.