Skip to main content

ReminderItem.ToString() Method

Returns the text representation of the current object.

Namespace: DevExpress.UI.Xaml.Scheduler

Assembly: DevExpress.UI.Xaml.Scheduler.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public override string ToString()

Returns

Type Description
String

A string representation of the current object.

Remarks

This method is overridden to return the text representation of the ReminderItem.

Below is an example of a reminder serialized to a string (trigger time automatically calculated by the Scheduler):

BEGIN:VALARM
TRIGGER:PT15M
ACTION:DISPLAY
END:VALARM

If the AlertTime is set explicitly in code or modified by the user, the serialization changes as follows:

BEGIN:VALARM
TRIGGER;VALUE=DATE-TIME:20190408T122840Z
X-DEVEXPRESS-TIMEBEFORESTART:PT30M
ACTION:DISPLAY
END:VALARM
See Also