Configurar opciones de página en Jython
Contents
[
Hide
]
Aspose.Cells - Configuración de Opciones de Página
Para agregar documentos usando Aspose.Cells Java for Jython. Aquí puedes ver código de ejemplo.
Código 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()
Descargar Código en Ejecución
Descargar Agregar documentos (Aspose.Cells) desde cualquiera de los sitios de codificación social mencionados a continuación: