System.Notification.TRepeatInterval
Delphi
TRepeatInterval = (None, Second, Minute, Hour, Day, Week, Weekday, Month, Quarter, Year, Era);
C++
enum class DECLSPEC_DENUM TRepeatInterval : unsigned char { None, Second, Minute, Hour, Day, Week, Weekday, Month, Quarter, Year, Era };
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| enum | public | System.Notification.pas System.Notification.hpp | System.Notification | System.Notification | 
Description
The interval for a repeating notification.
Usually, you can set a repeat interval when you schedule a notification.
Possible values are:
- None: This value specifies a non-repeating notification
- Second: A second.
- Minute: A minute.
- Hour: An hour.
- Day: A day.
- Week: A week.
- Weekday: A day in the week.
- Month: A month.
- Quarter: A quarter. One quarter equals 3 months.
- Year: A year.
- Era: A special calendar unit for specific cases. For example, a different era may help to distinguish between- BCand- ACin the Gregorian calendar on iOS. See iOS Developer Library - Historical Dates