21 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)
350
if (row.
CellsAccessibleObjects
is null)
355
foreach (CalendarCellAccessibleObject cell in row.
CellsAccessibleObjects
)