Configuración de página Ajuste a configuración de página
Contents
[
Hide
]
Aspose.Cells - Configuración de página - Ajuste a configuración de página
Para adaptar el contenido de la hoja de cálculo a un número específico de páginas, utilice los métodos setFitToPagesTall y setFitToPagesWide de la clase PageSetup. Estos métodos también se utilizan para ajustar las hojas de cálculo.
Java
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Accessing the first worksheet in the Excel file
WorksheetCollection worksheets = workbook.getWorksheets();
int sheetIndex = worksheets.add();
Worksheet sheet = worksheets.get(sheetIndex);
PageSetup pageSetup = sheet.getPageSetup();
// Setting the number of pages to which the length of the worksheet will
// be spanned
pageSetup.setFitToPagesTall(1);
// Setting the number of pages to which the width of the worksheet will be spanned
pageSetup.setFitToPagesWide(1);
Apache POI SS - HSSF & XSSF - Configuración de página - Ajuste a configuración de página
Apache POI SS utiliza los métodos setFitHeight y setFitWidth para la configuración de ajuste a página.
Java
Workbook wb = new XSSFWorkbook(); //or new HSSFWorkbook();
Sheet sheet = wb.createSheet("format sheet");
PrintSetup ps = sheet.getPrintSetup();
sheet.setAutobreaks(true);
ps.setFitHeight((short) 1);
ps.setFitWidth((short) 1);
Descargar Código en Ejecución
Descargar Código de Ejemplo
Para obtener más detalles, visita Configuración de opciones de página.