14 references to RowsAccessibleObjects
System.Windows.Forms (14)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarAccessibleObject.cs (2)
130
|| CalendarBodyAccessibleObject.
RowsAccessibleObjects
is null)
137
foreach (CalendarRowAccessibleObject row in CalendarBodyAccessibleObject.
RowsAccessibleObjects
)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarBodyAccessibleObject.cs (8)
76
NavigateDirection.NavigateDirection_FirstChild =>
RowsAccessibleObjects
?.First?.Value,
77
NavigateDirection.NavigateDirection_LastChild =>
RowsAccessibleObjects
?.Last?.Value,
92
return
RowsAccessibleObjects
?.First?.Value.CellsAccessibleObjects?.ToArray();
97
if (!_monthCalendarAccessibleObject.IsHandleCreated ||
RowsAccessibleObjects
is null)
104
foreach (CalendarRowAccessibleObject row in
RowsAccessibleObjects
)
156
||
RowsAccessibleObjects
is null)
163
foreach (CalendarRowAccessibleObject row in
RowsAccessibleObjects
)
204
internal override int RowCount =>
RowsAccessibleObjects
?.Count ?? -1;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarCellAccessibleObject.cs (1)
115
CalendarRowAccessibleObject? topRow = _calendarBodyAccessibleObject.
RowsAccessibleObjects
?.First?.Value;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarRowAccessibleObject.cs (2)
146
=> _calendarBodyAccessibleObject.
RowsAccessibleObjects
?.Find(this)?.Next?.Value,
148
=> _calendarBodyAccessibleObject.
RowsAccessibleObjects
?.Find(this)?.Previous?.Value,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (1)
342
LinkedList<CalendarRowAccessibleObject>? rows = calendar.CalendarBodyAccessibleObject.
RowsAccessibleObjects
;