0

I using Telerik RadScheduler Reminder ,when reminder is popUp's i need to check the Name and description of this event.I find the way to get Name , but i can't get description.I debuged and i see description, but i can't get to it.

Here the picture of the object:

enter image description here

My code:

  private void radSchedulerReminder1_RemindObjectShown(object sender, RadShowRemindObjectArgs e)
        {
            string Subject = e.RemindObject.Subject.Trim();//Name i found.
            string  des = e.RemindObject.GetType().;//here i stuck with description
}

Any ideas how to Get the description ?

Tony L.
  • 17,638
  • 8
  • 69
  • 66
Vladimir Potapov
  • 2,347
  • 7
  • 44
  • 71

1 Answers1

1

I realize this is an old question, but for others that stumble across it: You can cast the RemindObject as an IEvent and get description:

private void radSchedulerReminder1_RemindObjectShown(object sender, RadShowRemindObjectArgs e)
{
    string des = ((IEvent)e.RemindObject).Description;
}
Kemo Sabe
  • 99
  • 4