Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
310
How to get Holiday description For UltraMonthViewMulti
posted

Hi,

I want to get description of the holiday for UltraMonthViewMulti Control.

Anybody help please.

Parents
  • 23930
    Offline posted

    Hi Murali,

    Thank you for contacting Infragistics Developer Support.

    What you could do in order to get the description of the holidays in your MonthViewMulti control is to iterate through the Holidays collection of the calendar info of the MonthView and check their text property:

    var holidays = ultraMonthViewMulti1.CalendarInfo.Holidays;

    foreach (var holiday in holidays)

    {

                   MessageBox.Show(holiday.Text);

    }

    Please let me know if you have any additional questions.

Reply Children
No Data