Formatting an Appointment in Aspose.Email
Contents
[
Hide
]
Aspose.Email - Formatting an Appointment
The AppointmentFormattingOptions class can be used to format the appointment in text and HTML format.
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));
Download Running Code
Download Sample Code
For more details, visit Formatting an Appointment.