ضبط خيارات الصفحة في جايثون
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()
تحميل رمز التشغيل
قم بتنزيل مستندات الإضافة (Aspose.Cells) من أي من المواقع الاجتماعية للترميز الواردة أدناه: