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