Notification
Command Description
Pop up a notification dialog box
Command Prototype
Dialog.Notify(sMessage, sTitle, iIcon)
Parameter Description
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
sMessage | True | string | "" | The message content in the notification dialog box |
sTitle | True | string | "Laiye RPA" | Dialog title |
iIcon | True | enum | 0 | Dialog Icon |
Demo
Dialog.Notify("This is the content", "This is the title", 0)
/**
A message notification box pops up in the lower right corner
*/