Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
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 Display or Hide Scroll Bars (Aspose.Cells) from the social coding sites mentioned below:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.