ComponentFactory.Krypton.Toolkit.KryptonContextMenuMonthCalendar.AddBoldedDate C# (CSharp) Method

AddBoldedDate() public method

Adds a day to be displayed in bold in the month calendar.
public AddBoldedDate ( System.DateTime date ) : void
date System.DateTime The date to be displayed in bold.
return void
        public void AddBoldedDate(DateTime date)
        {
            if (!_dates.Contains(date))
            {
                _dates.Add(date);
                OnPropertyChanged(new PropertyChangedEventArgs("BoldedDates"));
            }
        }