Schedules a Reminder to appear at a given point in time

TypeScript
export interface ReminderSchedule extends
Extends

BaseSchedule

Properties

PropertyDescription
DisplayNotificationDisplays Reminder as a Toast Notification
DisplaySystemStatusMessageShows Reminder as System Status Message
HeaderReminder header text
MessageReminder body text
MessageTypeType of Message - 'Success', 'Info', 'Warning' or 'Error'

Property Details

DisplayNotification

Displays Reminder as a Toast Notification

TypeScript
DisplayNotification: boolean;
Property Value

boolean

DisplaySystemStatusMessage

Shows Reminder as System Status Message

TypeScript
DisplaySystemStatusMessage?: boolean;
Property Value

boolean

Reminder header text

TypeScript
Header: string;
Property Value

string

Message

Reminder body text

TypeScript
Message: string;
Property Value

string

MessageType

Type of Message - 'Success', 'Info', 'Warning' or 'Error'

TypeScript
MessageType: AdaptableMessageType;
Property Value

AdaptableMessageType