AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones de notificaciones del sistema
Elimina un Notification interactivo enviado anteriormente.
Ejemplo
// Create an update notification
notifUPD is sysNotification
notifUPD.Title = "Update available!"
notifUPD.Text1 = "Download now to get the latest features."
notifUPD.Buttons[1].Caption = "Download!"
notifUPD.Buttons[1].Note = "UPD_download_button"
notifUPD.Buttons[2].Caption = "Later..."
notifUPD.Buttons[2].Type = sysNotifReminderButton
// Send notification
notifUPD.Send()

// Multiple actions related to the notification ...

// It is no longer necessary to display the notification, it can be removed
notifUPD.Remove()
Sintaxis
<Result> = <Notification>.Remove()
<Result>: booleano
  • True si se envió el Notification ,
  • False en caso contrario.
<Notification>: Notification Variable
Nombre de la sysNotification Variable a eliminar.
Observaciones
Cuando se quita, la Notification desaparece de la pantalla y se elimina del Centro de Acción de Windows.
Clasificación Lógica de negocio / UI: Lógica de negocio
Versión mínima requerida
  • Versión 27
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 23/06/2023

Señalar un error o enviar una sugerencia | Ayuda local