GcExcel allows users to personalize the display of the workbook. You can use the BookView property of the IWorkbook interface to set the view of the workbook as per your preferences.
The following properties of the IWorkbookView interface allows users to further customize various display settings in the workbook.
Refer to the following code snippet to set workbook view and customize other display settings.
C# |
Copy Code |
---|---|
//Set workbook view IWorkbook workbook = new Workbook(); var bookView = workbook.BookView; bookView.DisplayHorizontalScrollBar = true; bookView.DisplayVerticalScrollBar = true; bookView.DisplayWorkbookTabs = true; bookView.TabRatio = 0.8; |