Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To display or hide scroll bars using Aspose.Cells Java for Jython, see the example code below.
Jython Code
from aspose-cells import Settings
from com.aspose.cells import Workbook
class DisplayHideScrollBars:
def __init__(self):
dataDir = Settings.dataDir + 'WorkingWithWorksheets/DisplayHideScrollBars/'
workbook = Workbook(dataDir + "Book1.xls")
# Hide the vertical scroll bar of the Excel file
workbook.getSettings().setVScrollBarVisible(False)
# Hide the horizontal scroll bar of the Excel file
workbook.getSettings().setHScrollBarVisible(False)
# Save the modified Excel file in the default (Excel 2003) format
workbook.save(dataDir + "output.xls")
# Print message
print "Scroll bars are now hidden, please check the output document."
if __name__ == '__main__':
DisplayHideScrollBars()Download Display/Hide Scroll Bars (Aspose.Cells) from any of the below‑mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.