كسر الأسطر وتضمين النص
Contents
[
Hide
]
لضمان قراءة النص في خلية معينة يمكن تطبيق كسرات الأسطر الصريحة وتضمين النص. يحول تضمين النص سطرًا واحدًا إلى عدة أسطر داخل خلية، بينما تضع كسرات الأسطر الصريحة فواصل تمامًا حيث تريدها.
لتضمين النص في خلية
لتضمين النص في خلية، استخدم الخاصية Aspose.Cells.Style.setTextWrapped.
الشفرة المصدرية العينية التالية توضح كيفية استخدام تضمين النص وكسرات الأسطر الصريحة في خلية.
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 | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(WrapTextinCell.class) + "TechnicalArticles/"; | |
// Create Workbook Object | |
Workbook wb = new Workbook(); | |
// Open first Worksheet in the workbook | |
Worksheet ws = wb.getWorksheets().get(0); | |
// Get Worksheet Cells Collection | |
Cells cell = ws.getCells(); | |
// Increase the width of First Column Width | |
cell.setColumnWidth(0, 35); | |
// Increase the height of first row | |
cell.setRowHeight(0, 65); | |
// Add Text to the First Cell | |
cell.get(0, 0).setValue("I am using the latest version of Aspose.Cells to test this functionality"); | |
// Get Cell's Style | |
Style style = cell.get(0, 0).getStyle(); | |
// Set Text Wrap property to true | |
style.setTextWrapped(true); | |
// Set Cell's Style | |
cell.get(0, 0).setStyle(style); | |
// Save Excel File | |
wb.save(dataDir + "WrapTextinCell_out.xls"); |
للاستخدام كسرات الأسطر الصريحة
يمكنك استخدام ‘\n’ في الجافا لإدراج كسرات الأسطر الصريحة في خلية.
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 | |
// The path to the documents directory. | |
String dataDir = Utils.getDataDir(UseExplicitLineBreaks.class); | |
// Create Workbook Object | |
Workbook wb = new Workbook(); | |
// Open first Worksheet in the workbook | |
Worksheet ws = wb.getWorksheets().get(0); | |
// Get Worksheet Cells Collection | |
Cells cell = ws.getCells(); | |
// Increase the width of First Column Width | |
cell.setColumnWidth(0, 35); | |
// Increase the height of first row | |
cell.setRowHeight(0, 65); | |
// Add Text to the Firts Cell with Explicit Line Breaks | |
cell.get(0, 0).setValue("I am using \nthe latest version of \nAspose.Cells \nto test this functionality"); | |
// Get Cell's Style | |
Style style = cell.get(0, 0).getStyle(); | |
// Set Text Wrap property to true | |
style.setTextWrapped(true); | |
// Set Cell's Style | |
cell.get(0, 0).setStyle(style); | |
// Save Excel File | |
wb.save(dataDir + "WrappingText.xls"); |