'Sets the ongoing status of the notification, the user cannot close it.
Public Sub setOngoing (ongoing As Boolean) As NB6
If IsOld Then
OldNotification.OnGoingEvent = ongoing
Else
NotificationBuilder.RunMethod("setOngoing", Array(ongoing))
End If
Return Me
End Sub
'Sets if the timestamp is shown inside the notification.
Public Sub setShowWhen (bshow As Boolean) As NB6
If IsBuilder Then
NotificationBuilder.RunMethod("setShowWhen", Array(bshow))
End If
Return Me
End Sub