public class AppointmentFormattingOptions extends Object
Represents the appointment formatting options.
Constructor and Description |
---|
AppointmentFormattingOptions()
Initializes a new instance of the
AppointmentFormattingOptions class. |
Modifier and Type | Method and Description |
---|---|
static AppointmentFormattingOptions |
createAsHtml()
Specifies formatting in the html.
|
String |
getCssStyles()
Gets or sets the additional css styles for the formatter.
|
String |
getDescriptionFormat()
Gets or sets the description format.
|
String |
getEndDateFormat()
Gets or sets the end date format.
|
String |
getLocationFormat()
Gets or sets the where format.
|
String |
getOrganizerFormat()
Gets or sets the organizer format.
|
String |
getStartDateFormat()
Gets or sets the start date format.
|
String |
getTimezoneFormat()
Gets or sets the timezone format.
|
String |
getTitleFormat()
Gets or sets the title format.
|
boolean |
isTextFormat()
Gets a value indicating whether template has a text format.
|
void |
setCssStyles(String value)
Gets or sets the additional css styles for the formatter.
|
void |
setDescriptionFormat(String value)
Gets or sets the description format.
|
void |
setEndDateFormat(String value)
Gets or sets the end date format.
|
void |
setLocationFormat(String value)
Gets or sets the where format.
|
void |
setOrganizerFormat(String value)
Gets or sets the organizer format.
|
void |
setStartDateFormat(String value)
Gets or sets the start date format.
|
void |
setTimezoneFormat(String value)
Gets or sets the timezone format.
|
void |
setTitleFormat(String value)
Gets or sets the title format.
|
public AppointmentFormattingOptions()
Initializes a new instance of the AppointmentFormattingOptions
class.
public final String getDescriptionFormat()
Gets or sets the description format.
Value: The description format.public final void setDescriptionFormat(String value)
Gets or sets the description format.
Value: The description format.public final String getOrganizerFormat()
Gets or sets the organizer format.
Value: The organizer format.public final void setOrganizerFormat(String value)
Gets or sets the organizer format.
Value: The organizer format.public final String getTimezoneFormat()
Gets or sets the timezone format.
Value: The timezone format.public final void setTimezoneFormat(String value)
Gets or sets the timezone format.
Value: The timezone format.public final String getTitleFormat()
Gets or sets the title format.
Value: The title format.public final void setTitleFormat(String value)
Gets or sets the title format.
Value: The title format.public final String getLocationFormat()
Gets or sets the where format.
Value: The where format.public final void setLocationFormat(String value)
Gets or sets the where format.
Value: The where format.public final String getEndDateFormat()
Gets or sets the end date format.
Value: The end date format.public final void setEndDateFormat(String value)
Gets or sets the end date format.
Value: The end date format.public final String getStartDateFormat()
Gets or sets the start date format.
Value: The start date format.public final void setStartDateFormat(String value)
Gets or sets the start date format.
Value: The start date format.public final String getCssStyles()
Gets or sets the additional css styles for the formatter.
Value: The styles to be injected into resulting html body.public final void setCssStyles(String value)
Gets or sets the additional css styles for the formatter.
Value: The styles to be injected into resulting html body.public final boolean isTextFormat()
Gets a value indicating whether template has a text format.
Value:true
if template has a text format; otherwise, false
.public static AppointmentFormattingOptions createAsHtml()
Specifies formatting in the html.
AppointmentFormattingOptions
that represents appointment formatting options.