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