Formatear una Cita en Aspose.Email

Aspose.Email - Formatear una Cita

La clase AppointmentFormattingOptions se puede usar para formatear la cita en formato de texto y HTML.

Java


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

AppointmentFormattingOptions formattingOptions = new AppointmentFormattingOptions();

formattingOptions.setLocationFormat("Dónde: {0}");

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

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

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

Descargar Código en Ejecución

Descargar Código de Ejemplo