Package com.aspose.email

Examples of com.aspose.email.AppointmentFormattingOptions


public class AsposeFormatAppointments
{
  public static void main(String[] args)
  {
    Appointment appointment = Appointment.load("data/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));
  }
 
View Full Code Here

TOP

Related Classes of com.aspose.email.AppointmentFormattingOptions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.