WoW:API CalendarAddEvent: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(New page: {{wowapi}} Create an event on the in ganme calendar system. CalendarAddEvent*() == Parameters == === Arguments === :Appears to only use arguments from the frame CalendarCreateEventFrame...)
 
m (Move page script moved page API CalendarAddEvent to API CalendarAddEvent without leaving a redirect)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{wowapi}}
{{wowapi}} {{protectedhwapi|3.0.3}}
 
Saves the new event currently being created to the WoW server.
Create an event on the in ganme calendar system.
  CalendarAddEvent()
 
  CalendarAddEvent*()
== Parameters ==
=== Arguments ===
:Appears to only use arguments from the frame CalendarCreateEventFrame
 
=== Returns ===
:''nil''
 


== Details ==
== Details ==
: Creates a event using the details in the CalendarCreateEventFrame frame.
* Saves the event or announcement created by: {{api|CalendarNewEvent}} or {{api|CalendarNewGuildWideEvent}}
 
* Event information can be altered prior to saving using {{api|CalendarEventSetDate}}, {{api|CalendarEventSetDescription}}, {{api|CalendarEventSetRepeatOption}}, {{api|CalendarEventSetTime}}, {{api|CalendarEventSetTitle}}, and {{api|CalendarEventSetType}}.
 
* This function is only used to create '''new''' events. To save changes to existing events, use {{api|CalendarUpdateEvent}}()
----
__NOTOC__

Latest revision as of 04:45, 15 August 2023

WoW API < CalendarAddEvent

Saves the new event currently being created to the WoW server.

CalendarAddEvent()

Details[edit]