|
|
|
|
|
- Properties specific to gglOverride variables
gglOverride (Variable type) In french: gglSurcharge
The gglOverride type is used to define information about event notification overrides. You can define and change the characteristics of this override using different WLanguage properties. 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.Default)
Trace(Evt.Notification.Override.Count)
Trace(Evt.Visibility)
Trace(Evt.Disponibilté)
Trace(Evt.Attachment.Count)
FOR EACH UneNotif OF Evt.Notification.Override
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 gglOverride variables The following properties can be used to handle overrides: | | | Property name | Type used | Effect |
---|
Method | String constant | Method used for notifications: - gglNotificationEmail Notification by email.
- gglNotificationPopup Notification in a popup window.
| NbMinute | Integer | Number of minutes before the event that defines when the notification should be displayed / sent. This number must be between 0 and 40320 (40320 minutes = 4 weeks). |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|