|
|
|
|
|
SysNotificationJaugeMaj (Fonction) En anglais : SysNotificationProgressBarUpdate Met à jour les caractéristiques d'une jauge présente dans une notification système. notif est une sysNotification
notif.Titre = "Téléchargement en attente ..."
notif.Jauges[1].Titre = "Vidéo"
notif.Jauges[1].Statut = "Téléchargement..."
notif.Jauges[1].TexteProgression = "0/4"
notif.Jauges[1].Avancement = 0.0
SysNotificationEnvoie(notif)
Multitâche(1 s)
notif.Jauges[1].Avancement = 0.25
notif.Jauges[1].TexteProgression = "1/4"
SysNotificationJaugeMaj(notif.Jauges[1])
Multitâche(1 s)
notif.Jauges[1].Avancement = 0.50
notif.Jauges[1].TexteProgression = "2/4"
SysNotificationJaugeMaj(notif.Jauges[1])
Multitâche(1 s)
notif.Jauges[1].Avancement = 0.75
notif.Jauges[1].TexteProgression = "3/4"
SysNotificationJaugeMaj(notif.Jauges[1])
Multitâche(1 s)
notif.Jauges[1].Avancement = 1.0
notif.Jauges[1].TexteProgression = "4/4"
notif.Jauges[1].Statut = "Téléchargement terminé"
SysNotificationJaugeMaj(notif.Jauges[1])
Syntaxe
<Résultat> = SysNotificationJaugeMaj(<Jauge>)
<Résultat> : Booléen - Vrai si la jauge a été mise à jour,
- Faux dans le cas contraire. Pour plus de détails sur l'erreur, utilisez la fonction ErreurInfo.
<Jauge> : Variable de type sysNotificationJauge Variable de type sysNotificationJauge correspondant à la jauge à mettre à jour dans la notification.
Documentation également disponible pour…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|