|
|
|
|
NotifListCategory (Function) In french: NotifListeCatégorie Lists the notification categories of the application.
// Display in a List Box control // the list of notification categories of the application arrCategory is array of notificationCategory = NotifListCategory() FOR EACH Category OF arrCategory ListAdd(LIST_Category, Category.Name) END
Syntax
<Result> = NotifListCategory()
<Result>: Array of NotificationCategory Array of NotificationCategory variables corresponding to the list of notification categories of the application. Remark: These variables take into account changes made by the user in the application's notification settings screen. Remarks - To delete a category, use NotifDeleteCategory.
- NotifListCategory is available only for devices running Android 8.0 or later (API level 26).
A fatal error occurs if the function is used with an earlier system version. To determine the version of Android the application is running on, use SysAndroidVersion.
Component: wd280android.jar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|