Method Show
Show(String, Boolean)
Creates a Notification above the minimap with the given message.
Declaration
public static int Show(string message, bool blinking = false)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message in the notification. |
System.Boolean | blinking | if set to |
Returns
Type | Description |
---|---|
System.Int32 | The handle of the Notification which can be used to hide it using Hide(Int32). |
Show(NotificationIcon, String, String, String, Boolean, Boolean)
Creates a more advanced (SMS-alike) Notification above the minimap showing a sender icon, subject and the message.
Declaration
public static int Show(NotificationIcon icon, string sender, string subject, string message, bool fadeIn = false, bool blinking = false)
Parameters
Type | Name | Description |
---|---|---|
NotificationIcon | icon | The notification icon. |
System.String | sender | The sender name. |
System.String | subject | The subject line. |
System.String | message | The message itself. |
System.Boolean | fadeIn | If |
System.Boolean | blinking | if set to |
Returns
Type | Description |
---|---|
System.Int32 | The handle of the Notification which can be used to hide it using Hide(Int32). |