Remove reminder

Is there anyway to remove a reminder/alarm that has been created from my application? And maybe make it possible for the user to list all reminders/alarms that has been created.

Upvotes: 1

Views: 471

Answers (1)

Senthil Kumar B
Senthil Kumar B

Reputation: 936

Did you try this ?

if (ScheduledActionService.Find("Your Alarm Name") != null)
ScheduledActionService.Remove("Your Alarm Name");

Upvotes: 1

Related Questions