تقديم خطوط شبكية صلبة أثناء تحويل Excel إلى PDF
Contents
[
Hide
]
للتوافق مع الإصدارات القديمة، تقوم Aspose.Cells بإظهار خطوط الشبكة كخط متقطع افتراضيًا أثناء تحويل Excel إلى PDF. ومع ذلك، تقوم Excel الحديثة بإظهار خطوط الشبكة كخط صلب في الوقت الحالي.
مع الخيارPdfSaveOptions.GridlineTypes ، يمكن لـ Aspose.Cells أيضًا عرض خطوط الشبكة على شكل خط صلب.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// Create an empty Workbook | |
Workbook wb = new Workbook(); | |
//Prepare data | |
wb.getWorksheets().get(0).getCells().get("D9").putValue("gridline"); | |
//Enable to print gridline | |
wb.getWorksheets().get(0).getPageSetup().setPrintGridlines(true); | |
//Set to render gridline as solid line | |
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions(); | |
pdfSaveOptions.setGridlineType(GridlineType.HAIR); | |
// Save the pdf file with PdfSaveOptions | |
wb.save("output.pdf", pdfSaveOptions); |