การจัดรูปแบบการนัดหมายใน Aspose.Email

Aspose.Email - การจัดรูปแบบการนัดหมาย

คลาส AppointmentFormattingOptions สามารถใช้จัดรูปแบบการนัดหมายในรูปแบบข้อความและ HTML

Java


 Appointment appointment = Appointment.load(dataDir + "appointment.ics");

AppointmentFormattingOptions formattingOptions = new AppointmentFormattingOptions();

formattingOptions.setLocationFormat("Where: {0}");

formattingOptions.setTitleFormat("Subject: {0}");

formattingOptions.setDescriptionFormat("\r\n*~*~*~*~*~*~*~*~*~*\r\n{0}");

System.out.println(appointment.getAppointmentText(formattingOptions));

ดาวน์โหลดโค้ดที่ทำงาน

ดาวน์โหลดโค้ดตัวอย่าง