MonthCalendar::RemoveBoldedDate Method (DateTime)

 

Removes the specified date from the list of nonrecurring bold dates.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
void RemoveBoldedDate(
	DateTime date
)

Parameters

date
Type: System::DateTime

The date to remove from the date list.

If the specified date occurs more than once in the date list, only the first date is removed. You must call the UpdateBoldedDates method to ensure that the display is updated to reflect the removal.

The following code example uses the RemoveBoldedDate method to remove a specified date from the list of bold dates. This example requires that a MonthCalendar control, named monthCalendar1, has been added to a Form and that this method is placed within the form and called from it.

private:
   void button2_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      monthCalendar1->RemoveBoldedDate( DateTime::Parse( listBox1->SelectedItem->ToString()->
            Substring( 0, listBox1->SelectedItem->ToString()->IndexOf( " " ) ) ) );
      monthCalendar1->UpdateBoldedDates();
      listBox1->Items->RemoveAt( listBox1->SelectedIndex );
      if ( listBox1->Items->Count == 0 )
            button3->Enabled = false;
   }

.NET Framework
Available since 1.1
Return to top
Show: