تم إرفاق [ملف الإخراج](102662195.xlsx) الذي تم إنشاؤه بواسطة الرمز العينة أعلاه للإشارة الخاصة بك.

Contents
[ ]

تقدم Aspose.Cells Shape.setTextDirection() طريقة لتحديد اتجاه النص المطلوب لتعليق.

الصورة التالية تظهر التعليق مع إعدادات الصيغة الخاصة به في Microsoft Excel. يتم الحصول على ملف الإخراج بعد تشغيل الشريط الكودي أدناه.

تعليق باتجاه النص من اليمين إلى اليسار

todo:image_alt_text

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
String dataDir = "";
// Instantiate a new Workbook
Workbook wb = new Workbook();
// Get the first worksheet
Worksheet sheet = wb.getWorksheets().get(0);
// Add a comment to A1 cell
Comment comment = sheet.getComments().get(sheet.getComments().add("A1"));
// Set its vertical alignment setting
comment.getCommentShape().setTextVerticalAlignment(TextAlignmentType.CENTER);
// Set its horizontal alignment setting
comment.getCommentShape().setTextHorizontalAlignment(TextAlignmentType.RIGHT);
// Set the Text Direction - Right-to-Left
comment.getCommentShape().setTextDirection(TextDirectionType.RIGHT_TO_LEFT);
// Set the Comment note
comment.setNote("This is my Comment Text. This is test");
// Save the Excel file
wb.save(dataDir + "outCommentShape1.xlsx");