Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To display and hide gridlines using Aspose.Cells for Java with Jython, see the example code below.
Jython Code
from aspose-cells import Settings
from com.aspose.cells import Workbook
class DisplayHideGridlines:
def __init__(self):
dataDir = Settings.dataDir + 'WorkingWithWorksheets/DisplayHideGridlines/'
workbook = Workbook(dataDir + "Book1.xls")
# Accessing the first worksheet in the Excel file
worksheets = workbook.getWorksheets()
worksheet = worksheets.get(0)
# Hiding the grid lines of the first worksheet
worksheet.setGridlinesVisible(False)
# Saving the modified Excel file in the default (Excel 2000) format
workbook.save(dataDir + "output.xls")
# Print message
print "Grid lines are now hidden on sheet 1, please check the output document."
if __name__ == '__main__':
DisplayHideGridlines()Download Display Hide Gridlines (Aspose.Cells) from any of the below‑listed social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.