17 references to SelectionStart
System.Windows.Forms (17)
winforms\Managed\System\WinForms\MonthCalendar.cs (17)
892return new SelectionRange(SelectionStart, SelectionEnd); 2691if (System.DateTime.Equals(calendar.SelectionStart.Date, calendar.SelectionEnd.Date)) { 2692name = SR.GetString(SR.MonthCalendarSingleDateSelected, calendar.SelectionStart.ToLongDateString()); 2695name = SR.GetString(SR.MonthCalendarRangeSelected, calendar.SelectionStart.ToLongDateString(), calendar.SelectionEnd.ToLongDateString()); 2699if (System.DateTime.Equals(this.calendar.SelectionStart.Month, this.calendar.SelectionEnd.Month)) { 2700name = SR.GetString(SR.MonthCalendarSingleDateSelected, calendar.SelectionStart.ToString("y")); 2703name = SR.GetString(SR.MonthCalendarRangeSelected, calendar.SelectionStart.ToString("y"), calendar.SelectionEnd.ToString("y")); 2707if (System.DateTime.Equals(calendar.SelectionStart.Year, calendar.SelectionEnd.Year)) { 2708name = SR.GetString(SR.MonthCalendarSingleYearSelected, calendar.SelectionStart.ToString("yyyy")); 2711name = SR.GetString(SR.MonthCalendarYearRangeSelected, calendar.SelectionStart.ToString("yyyy"), calendar.SelectionEnd.ToString("yyyy")); 2715name = SR.GetString(SR.MonthCalendarSingleDecadeSelected, calendar.SelectionStart.ToString("yyyy")); 2728if (System.DateTime.Equals(calendar.SelectionStart.Date, calendar.SelectionEnd.Date)) { 2729value = calendar.SelectionStart.ToLongDateString(); 2732value = string.Format("{0} - {1}", calendar.SelectionStart.ToLongDateString(), calendar.SelectionEnd.ToLongDateString()); 2736if (System.DateTime.Equals(this.calendar.SelectionStart.Month, this.calendar.SelectionEnd.Month)) { 2737value = calendar.SelectionStart.ToString("y"); 2740value = string.Format("{0} - {1}", calendar.SelectionStart.ToString("y"), calendar.SelectionEnd.ToString("y"));