Needs summary.
info = C_Calendar.GetEventInfo()
Returns
- info
- CalendarEventInfo
Key |
Type |
Description
|
title |
string |
|
description |
string |
|
creator |
string? |
|
eventType |
Enum.CalendarEventType |
|
repeatOption |
Enum.CalendarEventRepeatOptions |
|
maxSize |
number |
|
textureIndex |
number? |
|
time |
CalendarTime |
|
lockoutTime |
CalendarTime |
|
isLocked |
boolean |
|
isAutoApprove |
boolean |
|
hasPendingInvite |
boolean |
|
inviteStatus |
Enum.CalendarStatus? |
|
inviteType |
Enum.CalendarInviteType? |
|
calendarType |
string |
const CALENDARTYPE
|
communityName |
string? |
|
Enum.CalendarEventRepeatOptions
Value |
Key |
Description
|
0 |
Never |
|
1 |
Weekly |
|
2 |
Biweekly |
|
3 |
Monthly |
|
CalendarTime
Key |
Type |
Description
|
year |
number |
The current year (2019)
|
month |
number |
The current month (1-12)
|
monthDay |
number |
The current day of the month (1-31)
|
weekday |
number |
The current day of the week (1=Sunday, 2=Monday, ..., 7=Saturday)
|
hour |
number |
The current time in hours (0-23)
|
minute |
number |
The current time in minutes (0-59)
|
Enum.CalendarStatus
Value |
Key |
Description
|
0 |
Invited |
|
1 |
Available |
|
2 |
Declined |
|
3 |
Confirmed |
|
4 |
Out |
|
5 |
Standby |
|
6 |
Signedup |
|
7 |
NotSignedup |
|
8 |
Tentative |
|
CALENDARTYPE
Value |
Description
|
"PLAYER" |
Player-created event or invitation
|
"GUILD_ANNOUNCEMENT" |
Guild announcement
|
"GUILD_EVENT" |
Guild event
|
"COMMUNITY_EVENT" |
|
"SYSTEM" |
Other server-provided event
|
"HOLIDAY" |
Seasonal/holiday events
|
"RAID_LOCKOUT" |
Instance lockouts
|
Patch changes