Display or Hide Scroll Bars in PHP

Aspose.Cells - Display or Hide Scroll Bars

Hiding Scroll Bars

To hide scroll bars using Aspose.Cells Java for PHP, call the DisplayHideScrollBars module.

PHP Code

 // Instantiating an Excel object by the Excel file path
$workbook = new Workbook($dataDir . "book1.xls");

// Hiding the vertical scroll bar of the Excel file
$workbook->getSettings()->setVScrollBarVisible(false);

// Hiding the horizontal scroll bar of the Excel file
$workbook->getSettings()->setHScrollBarVisible(false);

// Saving the modified Excel file in the default (Excel 2003) format
$workbook->save($dataDir . "output.xls");

Download Running Code

Download Display or Hide Scroll Bars (Aspose.Cells) from the social coding sites mentioned below: