Event

Wisej.Web.Ext.FullCalendar.Event

Namespace: Wisej.Web.Ext.FullCalendar

Assembly: Wisej.Web.Ext.FullCalendar (3.2.0.0)

Represents an event in the FullCalendar control.

public class Event

Constructors

Event()

Constructs a new instance of Event.

Event(id)

Constructs a new instance of Event.

Name
Type
Description

id

A string that represents the ID of this event.

Event(day)

Constructs a new instance of an all-day Event.

Name
Type
Description

day

The DateTime date of the all-day event.

Event(start, end)

Constructs a new instance of Event.

Name
Type
Description

start

The starting DateTime date and time of the event.

end

The ending DateTime date and time of the event.

Event(start, duration)

Constructs a new instance of Event.

Name
Type
Description

start

The starting DateTime date and time of the event.

duration

The TimeSpan duration of the event.

Event(id, day)

Constructs a new instance of an all-day Event.

Name
Type
Description

id

A string that represents the ID of this event.

day

The DateTime date of the all-day event.

Event(id, start, end)

Constructs a new instance of Event.

Name
Type
Description

id

A string that represents the ID of this event.

start

The starting DateTime date and time of the event.

end

The ending DateTime date and time of the event.

Event(id, start, duration)

Constructs a new instance of Event.

Name
Type
Description

id

A string that represents the ID of this event.

start

The starting DateTime date and time of the event.

duration

The TimeSpan duration of the event.

Properties

AllDay

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

BackgroundColor

Color: Sets the background color for this event.

BorderColor

Color: Sets the border color for this event.

ClassName

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

Editable

Boolean: Determines whether the event can be modified.

End

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

Id

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

ResourceId

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

Start

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

TextColor

Color: Sets the text color for this event.

Title

String: Returns or sets the title of this event.

UserData

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

Last updated

Was this helpful?