Skip to main content

Event

Namespace: Wisej.Web.Ext.FullCalendar

Assembly: Wisej.Web.Ext.FullCalendar

Represents an event in the FullCalendar control.

public class Event

Constructors

Instance memberEvent()

Constructs a new instance of Event.

Instance memberEvent(id)

Constructs a new instance of Event.

NameTypeDescription
idStringA string that represents the ID of this event.

Instance memberEvent(day)

Constructs a new instance of an all-day Event.

NameTypeDescription
dayDateTimeThe DateTime date of the all-day event.

Instance memberEvent(start, end)

Constructs a new instance of Event.

NameTypeDescription
startDateTimeThe starting DateTime date and time of the event.
endDateTimeThe ending DateTime date and time of the event.

Instance memberEvent(start, duration)

Constructs a new instance of Event.

NameTypeDescription
startDateTimeThe starting DateTime date and time of the event.
durationTimeSpanThe TimeSpan duration of the event.

Instance memberEvent(id, day)

Constructs a new instance of an all-day Event.

NameTypeDescription
idStringA string that represents the ID of this event.
dayDateTimeThe DateTime date of the all-day event.

Instance memberEvent(id, start, end)

Constructs a new instance of Event.

NameTypeDescription
idStringA string that represents the ID of this event.
startDateTimeThe starting DateTime date and time of the event.
endDateTimeThe ending DateTime date and time of the event.

Instance memberEvent(id, start, duration)

Constructs a new instance of Event.

NameTypeDescription
idStringA string that represents the ID of this event.
startDateTimeThe starting DateTime date and time of the event.
durationTimeSpanThe TimeSpan duration of the event.

Properties

Instance memberAllDay

Boolean: Returns or sets a flag indicating that this is an all-day event.

Instance memberBackgroundColor

Color: Sets the background color for this event.

Instance memberBorderColor

Color: Sets the border color for this event.

Instance memberClassName

String: A CSS class (or array of classes) that will be attached to this event's element.

Instance memberEditable

Boolean: Determines whether the event can be modified.

Instance memberEnd

DateTime: Returns or sets the end date/time of this event.

Instance memberId

String: Returns or sets the unique ID for this event.

Instance memberResourceId

String: Returns or sets the id of the Resource associated to this event.

Instance memberStart

DateTime: Returns or sets the start date/time of this event.

Instance memberTextColor

Color: Sets the text color for this event.

Instance memberTitle

String: Returns or sets the title of this event.

Instance memberUserData

Object: Returns a dynamic object that can be used to store custom data.