Aspose.Email'de Bir Randevuyu Biçimlendirme

Aspose.Email - Randevu Biçimlendirme

AppointmentFormattingOptions sınıfı, randevuyu metin ve HTML formatında biçimlendirmek için kullanılabilir.

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));

Çalışan Kodu İndir

Örnek Kodu İndir