9 overrides of BoundingRectangle
System.Windows.Forms (9)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildListUiaProvider.cs (1)
32
internal override Rectangle
BoundingRectangle
System\Windows\Forms\Controls\DataGridView\DataGridView.DataGridViewEditingPanelAccessibleObject.cs (1)
23
internal override Rectangle
BoundingRectangle
System\Windows\Forms\Controls\ListBoxes\ListBox.AccessibleObject.cs (1)
31
internal override Rectangle
BoundingRectangle
=> this.IsOwnerHandleCreated(out ListBox? owner) ?
System\Windows\Forms\Controls\ListView\ListView.ListViewAccessibleObject.cs (1)
22
internal override Rectangle
BoundingRectangle
System\Windows\Forms\Controls\TabControl\TabPage.TabPageAccessibleObject.cs (1)
16
internal override Rectangle
BoundingRectangle
=> this.IsOwnerHandleCreated(out TabPage? owner) ?
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (1)
25
internal override Rectangle
BoundingRectangle
=> this.IsOwnerHandleCreated(out TextBoxBase? owner) ?
System\Windows\Forms\Controls\TreeView\TreeView.TreeViewAccessibleObject.cs (1)
17
internal override Rectangle
BoundingRectangle
=> this.IsOwnerHandleCreated(out ListBox? owner) ?
System\Windows\Forms\Form.AccessibleObject.cs (1)
25
internal override Rectangle
BoundingRectangle
System\Windows\Forms\Panels\Panel.PanelAccessibleObject.cs (1)
18
internal override Rectangle
BoundingRectangle
=> this.IsOwnerHandleCreated(out Panel? owner) ?
28 references to BoundingRectangle
System.Windows.Forms (10)
System\Windows\Forms\Accessibility\AccessibleObject.cs (4)
1059
left =
BoundingRectangle
.Left,
1060
top =
BoundingRectangle
.Top,
1061
height =
BoundingRectangle
.Height,
1062
width =
BoundingRectangle
.Width
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (2)
58
public override int LinesPerPage => _owningChildEditAccessibilityObject.
BoundingRectangle
.IsEmpty ? 0 : OwnerChildEditLinesCount;
286
RECT clientRectangle = _owningChildEditAccessibilityObject.
BoundingRectangle
;
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (2)
87
: _owningComboBox.ChildEditAccessibleObject.
BoundingRectangle
.IsEmpty
359
RECT clientRectangle = _owningComboBox.ChildEditAccessibleObject.
BoundingRectangle
;
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.CheckedListBoxItemAccessibleObject.cs (1)
76
if (!Parent.
BoundingRectangle
.IntersectsWith(Bounds))
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.GridEntryAccessibleObject.cs (1)
129
Rectangle entryBounds =
BoundingRectangle
;
System.Windows.Forms.Tests (18)
System\Windows\Forms\AccessibleObjects\DataGridViewCellAccessibleObjectTests.cs (4)
55
accCellWidthSum += dataGridView.Rows[0].Cells[i].AccessibilityObject.
BoundingRectangle
.Width;
58
int accRowWidth = dataGridView.Rows[0].AccessibilityObject.
BoundingRectangle
.Width;
86
accCellWidthSum += dataGridView.Rows[0].Cells[i].AccessibilityObject.
BoundingRectangle
.Width;
89
int accRowWidth = dataGridView.Rows[0].AccessibilityObject.
BoundingRectangle
.Width;
System\Windows\Forms\AccessibleObjects\DataGridViewRowsAccessibleObjectTests.cs (4)
31
accRowHeightSum += dataGridView.Rows[i].AccessibilityObject.
BoundingRectangle
.Height;
34
int accDataGridViewHeight = dataGridView.AccessibilityObject.
BoundingRectangle
.Height;
60
accRowHeightSum += dataGridView.Rows[i].AccessibilityObject.
BoundingRectangle
.Height;
63
int accDataGridViewHeight = dataGridView.AccessibilityObject.
BoundingRectangle
.Height;
System\Windows\Forms\AccessibleObjects\Form.FormAccessibleObjectTests.cs (2)
181
Rectangle actual = form.AccessibilityObject.
BoundingRectangle
;
202
Rectangle actual = form.AccessibilityObject.
BoundingRectangle
;
System\Windows\Forms\AccessibleObjects\ListBox.ListBoxItemAccessibleObjectTests.cs (1)
100
Assert.Equal(itemAccessibleObject.
BoundingRectangle
, actualRectangle);
System\Windows\Forms\AccessibleObjects\ListViewItem.ListViewSubItem.ListViewSubItemAccessibleObjectTests.cs (1)
936
Assert.Equal(listViewSubItem.AccessibilityObject.
BoundingRectangle
, actualRectangle);
System\Windows\Forms\AccessibleObjects\Panel.PanelAccessibleObjectTests.cs (1)
278
Rectangle boundingRectangle = panel1.AccessibilityObject.
BoundingRectangle
;
System\Windows\Forms\AccessibleObjects\PrintPreviewControl.PrintPreviewControlAccessibleObjectTests.cs (2)
76
Assert.Equal(Rectangle.Empty, accessibleObject.
BoundingRectangle
);
92
Rectangle accessibleObjectBoundingRectangle = accessibleObject.
BoundingRectangle
;
System\Windows\Forms\AccessibleObjects\TabPage.TabPageAccessibleObjectTests.cs (1)
550
Rectangle boundingRectangle = tabPage.AccessibilityObject.
BoundingRectangle
;
System\Windows\Forms\AccessibleObjects\TextBoxBaseAccessibleObjectTests.cs (1)
111
Rectangle actual = accessibleObject.
BoundingRectangle
;
System\Windows\Forms\AccessibleObjects\UpDownBase.UpDownButtons.UpDownButtonsAccessibleObjectTests.cs (1)
118
Assert.Equal(upDownButtons.AccessibilityObject.
BoundingRectangle
, actualRectangle);