1

Is there a way to set this X-ALT-DESC;FMTTYPE=text/html using iCal4j?

I need to set HTML content on the description of some events.

Cristik
  • 30,989
  • 25
  • 91
  • 127
leonardo
  • 121
  • 1
  • 5

1 Answers1

3
XProperty p = new XProperty("X-ALT-DESC");
p.getParameters().add(new FmtType("text/html"));
p.setValue("<html></html>");
Arnaud Quillaud
  • 4,420
  • 1
  • 12
  • 8