Formatowanie spotkania w Aspose.Email
Contents
[
Hide
]
Aspose.Email – formatowanie spotkania
Klasa AppointmentFormattingOptions może być użyta do formatowania spotkania w formacie tekstowym i 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));
Pobierz działający kod
Pobierz przykładowy kod
Po więcej szczegółów odwiedź Formatowanie spotkania.