在 Jython 中设置页面选项
Contents
[
Hide
]
Aspose.Cells - 设置页面选项
使用Aspose.Cells Java for Jython进行附加文档。这里可以看到示例代码。
Jython 代码
from aspose-cells import Settings
from com.aspose.cells import Workbook
from com.aspose.cells import PageOrientationType
from java.io import FileInputStream
class SettingPageOptions:
def __init__(self):
self.page_orientation()
self.scaling()
def page_orientation(dataDir):
dataDir = Settings.dataDir + 'WorkingWithWorksheets/SettingPageOptions/'
# Instantiating a Workbook object by excel file path
workbook = Workbook()
# Accessing the first worksheet in the Excel file
worksheets = workbook.getWorksheets()
sheet_index = worksheets.add()
sheet = worksheets.get(sheet_index)
# Setting the orientation to Portrait
page_setup = sheet.getPageSetup()
page_orientation_type = PageOrientationType
page_setup.setOrientation(page_orientation_type.PORTRAIT)
# Saving the modified Excel file in default (that is Excel 2003) format
workbook.save(dataDir + "Page Orientation.xls")
print "Set page orientation, please check the output file."
def scaling(dataDir):
dataDir = Settings.dataDir + 'WorkingWithWorksheets/SettingPageOptions/'
# Instantiating a Workbook object by excel file path
workbook = Workbook(dataDir + 'Book1.xls')
# Accessing the first worksheet in the Excel file
worksheets = workbook.getWorksheets()
sheet_index = worksheets.add()
sheet = worksheets.get(sheet_index)
# Setting the scaling factor to 100
page_setup = sheet.getPageSetup()
page_setup.setZoom(100)
# Saving the modified Excel file in default (that is Excel 2003) format
workbook.save(dataDir + "Scaling.xls")
print "Set scaling, please check the output file."
if __name__ == '__main__':
SettingPageOptions()
下载运行代码
从以下任何社交编码网站下载Append Documents (Aspose.Cells)