Base:
property
Bounds
System.Windows.Forms.AccessibleObject.Bounds
30 references to Bounds
System.Windows.Forms (5)
System\Windows\Forms\Scrolling\ScrollBar.ScrollBarAccessibleObject.cs (5)
93if (ThumbAccessibleObject?.Bounds.Contains(point) == true) 98if (FirstLineButtonAccessibleObject?.Bounds.Contains(point) == true) 103if (FirstPageButtonAccessibleObject?.Bounds.Contains(point) == true) 108if (LastPageButtonAccessibleObject?.Bounds.Contains(point) == true) 113if (LastLineButtonAccessibleObject?.Bounds.Contains(point) == true)
System.Windows.Forms.Tests (25)
System\Windows\Forms\AccessibleObjects\HScrollBar.ScrollBarFirstPageButtonAccessibleObjectTests.cs (2)
46Assert.Equal(Rectangle.Empty, accessibleObject.Bounds); 57Assert.Equal(Rectangle.Empty, accessibleObject.Bounds);
System\Windows\Forms\AccessibleObjects\HScrollBar.ScrollBarLastPageButtonAccessibleObjectTests.cs (1)
46Assert.Equal(Rectangle.Empty, accessibleObject.Bounds);
System\Windows\Forms\AccessibleObjects\ScrollBar.ScrollBarChildAccessibleObjectTests.cs (3)
27Assert.Equal(Rectangle.Empty, accessibleObject.Bounds); 39Assert.Equal(Rectangle.Empty, accessibleObject.Bounds); 50Assert.NotEqual(Rectangle.Empty, accessibleObject.Bounds);
System\Windows\Forms\AccessibleObjects\VScrollBar.ScrollBarFirstPageButtonAccessibleObjectTests.cs (2)
44Assert.Equal(Rectangle.Empty, accessibleObject.Bounds); 55Assert.Equal(Rectangle.Empty, accessibleObject.Bounds);
System\Windows\Forms\AccessibleObjects\VScrollBar.ScrollBarLastPageButtonAccessibleObjectTests.cs (1)
46Assert.Equal(Rectangle.Empty, accessibleObject.Bounds);
System\Windows\Forms\ScrollBarTests.cs (16)
2941Assert.True(HFirstPageButton(hScrollBar).Bounds.Width > 0); 2942Assert.True(HFirstPageButton(hScrollBar).Bounds.Height > 0); 2955Assert.True(HFirstPageButton(hScrollBar).Bounds.Width == 0 || HFirstPageButton(hScrollBar).Bounds.Height == 0); 2985Assert.True(HLastPageButton(hScrollBar).Bounds.Width > 0); 2986Assert.True(HLastPageButton(hScrollBar).Bounds.Height > 0); 2999Assert.True(HLastPageButton(hScrollBar).Bounds.Width == 0 || HLastPageButton(hScrollBar).Bounds.Height == 0); 3029Assert.True(VFirstPageButton(vScrollBar).Bounds.Width == 0 || VFirstPageButton(vScrollBar).Bounds.Height == 0); 3042Assert.True(VLastPageButton(vScrollBar).Bounds.Width > 0); 3043Assert.True(VLastPageButton(vScrollBar).Bounds.Height > 0); 3056Assert.True(VLastPageButton(vScrollBar).Bounds.Width == 0 || VLastPageButton(vScrollBar).Bounds.Height == 0); 3086Assert.True(VFirstPageButton(vScrollBar).Bounds.Width > 0); 3087Assert.True(VFirstPageButton(vScrollBar).Bounds.Height > 0);