Skip to main content

Notification

Command Description

Pop up a notification dialog box

Command Prototype

Dialog.Notify(sMessage, sTitle, iIcon)

Parameter Description

ParameterRequiredTypeDefaultDescription
sMessageTruestring""The message content in the notification dialog box
sTitleTruestring"Laiye RPA"Dialog title
iIconTrueenum0Dialog Icon

Demo

Dialog.Notify("This is the content", "This is the title", 0) 
/**
A message notification box pops up in the lower right corner
*/