|
|
|
|
|
- Properties specific to gglNotification variables
gglNotification (Variable type) In french: gglNotification
The gglNotification type is used to define information about event notifications in a calendar. You can define and change the characteristics of these notifications using different WLanguage properties. This type of variable is handled via gglEvent variables. Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Cnx is gglConnection
Cnx.Email = "balthazar@gmail.com"
Cnx.Password = "azerty"
Cnx.ApplicationName = "MonAppli-01"
IF GglConnect(Cnx) = False THEN
Error(ErrorInfo())
END
...
tabAgendas is array of gglCalendar
tabAgendas = GglListCalendar(Cnx)
GglFillCalendar(Cnx, tabAgendas[1])
Evt is gglEvent
FOR EACH Evt OF tabAgendas[1]
Trace(Evt.Title)
Trace(Evt.Color)
Trace(Evt.Notification.Défaut)
Trace(Evt.Notification.Surcharge.Occurrence)
Trace(Evt.Visibility)
Trace(Evt.Disponibilté)
Trace(Evt.PièceJointe.Occurrence)
FOR EACH UneNotif OF Evt.Notification.Surcharge
Trace(UneNotif.Méthode)
Trace(UneNotif.NbMinute)
END
FOR EACH UnFichier OF Evt.Attachment
Trace(UnFichier.IDFichier)
Trace(UnFichier.Titre)
Trace(UnFichier.URLFichier)
Trace(UnFichier.URLIcone)
Trace(UnFichier.TypeMIME)
END
END
Properties Properties specific to gglNotification variables The following properties can be used to handle event notifications: | | | Property name | Type used | Effect |
---|
Default | Boolean | - True if default notifications are to be applied,
- False otherwise.
| Override | Array of gglOverride | List of overrides used, if the Default property is set to False. Please note: There can only be a maximum of 5 overrides. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|