36 references to CellsAccessibleObjects
System.Windows.Forms (21)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarAccessibleObject.cs (2)
156if (rowAccessibleObject.CellsAccessibleObjects is null) 163foreach (CalendarCellAccessibleObject cell in rowAccessibleObject.CellsAccessibleObjects)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarBodyAccessibleObject.cs (4)
92return RowsAccessibleObjects?.First?.Value.CellsAccessibleObjects?.ToArray(); 123if (rowAccessibleObject.CellsAccessibleObjects is null) 128foreach (CalendarCellAccessibleObject cell in rowAccessibleObject.CellsAccessibleObjects) 236if (row.CellsAccessibleObjects?.Count > 0)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarCellAccessibleObject.cs (4)
96=> _calendarRowAccessibleObject.CellsAccessibleObjects?.Find(this)?.Next?.Value, 100: _calendarRowAccessibleObject.CellsAccessibleObjects?.Find(this)?.Previous?.Value, 117if (topRow is null || topRow.CellsAccessibleObjects is null) 122foreach (CalendarCellAccessibleObject cell in topRow.CellsAccessibleObjects)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarDayOfWeekCellAccessibleObject.cs (2)
42NavigateDirection.NavigateDirection_NextSibling => _calendarRowAccessibleObject.CellsAccessibleObjects?.Find(this)?.Next?.Value, 43NavigateDirection.NavigateDirection_PreviousSibling => _calendarRowAccessibleObject.CellsAccessibleObjects?.Find(this)?.Previous?.Value,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarRowAccessibleObject.cs (6)
128CalendarCellAccessibleObject? cell = CellsAccessibleObjects?.First?.Value; 152: CellsAccessibleObjects?.First?.Value, 153NavigateDirection.NavigateDirection_LastChild => CellsAccessibleObjects?.Last?.Value, 216|| CellsAccessibleObjects?.First is null 217|| CellsAccessibleObjects.First.Value.DateRange is null) 224_rowIndex, -1, GetWeekNumber(CellsAccessibleObjects.First.Value.DateRange.Start));
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarWeekNumberCellAccessibleObject.cs (1)
47NavigateDirection.NavigateDirection_NextSibling => _calendarRowAccessibleObject.CellsAccessibleObjects?.First?.Value,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (2)
349if (row.CellsAccessibleObjects is null) 354foreach (CalendarCellAccessibleObject cell in row.CellsAccessibleObjects)
System.Windows.Forms.Tests (15)
System\Windows\Forms\AccessibleObjects\MonthCalendar.CalendarCellAccessibleObjectTests.cs (7)
197CalendarCellAccessibleObject sunday = secondWeek.CellsAccessibleObjects?.First?.Value; 198CalendarCellAccessibleObject monday = secondWeek.CellsAccessibleObjects?.First?.Next?.Value; 199CalendarCellAccessibleObject tuesday = secondWeek.CellsAccessibleObjects?.First?.Next?.Next?.Value; 200CalendarCellAccessibleObject friday = secondWeek.CellsAccessibleObjects?.Last?.Previous?.Value; 201CalendarCellAccessibleObject saturday = secondWeek.CellsAccessibleObjects?.Last?.Value; 241CalendarCellAccessibleObject sunday = secondWeek.CellsAccessibleObjects?.First?.Value; 242CalendarCellAccessibleObject monday = secondWeek.CellsAccessibleObjects?.First?.Next?.Value;
System\Windows\Forms\AccessibleObjects\MonthCalendar.CalendarDayOfWeekCellAccessibleObjectTests.cs (2)
145LinkedList<CalendarCellAccessibleObject> days = daysOfWeekRow.CellsAccessibleObjects; 189LinkedList<CalendarCellAccessibleObject> days = daysOfWeekRow.CellsAccessibleObjects;
System\Windows\Forms\AccessibleObjects\MonthCalendar.CalendarRowAccessibleObjectTests.cs (3)
178CalendarCellAccessibleObject sunday = firstWeek.CellsAccessibleObjects?.First?.Value; 179CalendarCellAccessibleObject saturday = firstWeek.CellsAccessibleObjects?.Last?.Value; 203CalendarCellAccessibleObject saturday = firstWeek.CellsAccessibleObjects?.Last?.Value;
System\Windows\Forms\AccessibleObjects\MonthCalendar.CalendarWeekNumberCellAccessibleObjectTests.cs (3)
150CalendarCellAccessibleObject sunday = secondRow.CellsAccessibleObjects?.First?.Value; 180CalendarCellAccessibleObject sunday = daysOfWeekRow.CellsAccessibleObjects?.First?.Value; 181CalendarCellAccessibleObject monday = daysOfWeekRow.CellsAccessibleObjects?.First?.Next?.Value;