كيفية تطبيق / تعيين محاذاة النص في مربع النص
Contents
[
Hide
]
يمكن لـ TextBoxes تحسين التعبير عن مستنداتنا ومخططاتنا ، ويمكن أن يساعد تطبيق محاذاة مختلفة على أجزاء مختلفة من TextBox في إبراز النقاط التي تهم القراء. لكن المحاذاة الافتراضية لـ TextBox لا تلبي جميع احتياجاتنا. لهذا ، قد تحتاج إلى ضبط كل TextBox لتلبية متطلباتك المستهدفة. إذا لم يكن لديك الكثير من عناصر TextBox لتعديلها ، فأنت محظوظ. إذا كان هناك الكثير من مربعات النص التي يجب ضبطها ، أعتقد أنك ستكون في ورطة. لا تقلق الآن ،Aspose.Cells يوفر واجهة API لمساعدتك على القيام بذلك.
يطبق نموذج التعليمات البرمجية التالي محاذاة النص على TextBox.
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 = ""; | |
File file = new File(dataDir); | |
if(!file.exists()) | |
file.mkdir(); | |
//Instantiating a Workbook object | |
Workbook workbook = new Workbook(); | |
ShapeCollection shapes = workbook.getWorksheets().get(0).getShapes(); | |
//add a TextBox | |
Shape shape = shapes.addTextBox(2, 0, 2, 0, 50, 120); | |
shape.setText("This is a test."); | |
//set alignment | |
shape.setTextHorizontalAlignment(TextAlignmentType.CENTER); | |
shape.setTextVerticalAlignment(TextAlignmentType.CENTER); | |
//Save the excel file. | |
workbook.save(dataDir + "result.xlsx"); |
يمكنك أيضًا تغيير محاذاة النص لبعض النص داخل شكل مربع نص باستخدام نص HTML المناسب. يطبق نموذج التعليمات البرمجية التالي محاذاة النص على نص جزئي داخل مربع نص.
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 | |
// Intialize an object of the Workbook class to load template file | |
Workbook sourceWb = new Workbook("SampleTextboxExcel2016.xlsx"); | |
// Access the target textbox whose text is to be aligned | |
Shape sourceTextBox = sourceWb.getWorksheets().get(0).getShapes().get(0); | |
// Create and object of the target workbook | |
Workbook destWb = new Workbook(); | |
// Access first worksheet from the collection | |
Worksheet _sheet = destWb.getWorksheets().get(0); | |
// Create new textbox | |
TextBox _textBox = (TextBox)_sheet.getShapes().addShape(6,1, 0, 1, 0, 200, 200); | |
// Use Html string from a template file textbox | |
_textBox.setHtmlText(sourceTextBox.getHtmlText()); | |
// Save the workbook on disc | |
destWb.save("Output.xlsx"); |