5 writes to Y
System.Drawing.Primitives (4)
System\Drawing\RectangleF.cs (4)
95
Y
= value.Y;
234
Y
-= y;
262
Y
= result.Y;
316
Y
+= y;
System.Windows.Forms (1)
System\Windows\Forms\Rendering\Button\PopupButtonKeyCapRenderer.cs (1)
629
arc.
Y
= rect.Bottom - diameter;
39 references to Y
Microsoft.Private.Windows.Core (1)
System\Private\Windows\BinaryFormat\BinaryFormatWriter.cs (1)
228
value.
Y
,
System.Drawing.Primitives (29)
System\Drawing\Rectangle.cs (3)
183
(int)Math.Ceiling(value.
Y
),
198
(int)value.
Y
,
213
(int)Math.Round(value.
Y
),
System\Drawing\RectangleF.cs (26)
91
readonly get => new PointF(X,
Y
);
163
public readonly float Top =>
Y
;
177
public readonly float Bottom =>
Y
+ Height;
197
left.X == right.X && left.
Y
== right.
Y
&& left.Width == right.Width && left.Height == right.Height;
208
public readonly bool Contains(float x, float y) => X <= x && x < X + Width &&
Y
<= y && y <
Y
+ Height;
221
(X <= rect.X) && (rect.X + rect.Width <= X + Width) && (
Y
<= rect.
Y
) && (rect.
Y
+ rect.Height <=
Y
+ Height);
226
public override readonly int GetHashCode() => HashCode.Combine(X,
Y
, Width, Height);
262
Y = result.
Y
;
275
float y1 = Math.Max(a.
Y
, b.
Y
);
276
float y2 = Math.Min(a.
Y
+ a.Height, b.
Y
+ b.Height);
290
(rect.X < X + Width) && (X < rect.X + rect.Width) && (rect.
Y
<
Y
+ Height) && (
Y
< rect.
Y
+ rect.Height);
299
float y1 = Math.Min(a.
Y
, b.
Y
);
300
float y2 = Math.Max(a.
Y
+ a.Height, b.
Y
+ b.Height);
329
public override readonly string ToString() => $"{{X={X},Y={
Y
},Width={Width},Height={Height}}}";
System.Private.Windows.Core (1)
System\Private\Windows\BinaryFormat\BinaryFormatWriter.cs (1)
228
value.
Y
,
System.Private.Windows.Core.TestUtilities (4)
FluentAssertions\FluentAssertExtensions.cs (4)
41
parent.Subject.
Y
.Should().BeApproximately(expectedValue.
Y
, precision, because, becauseArgs);
64
&& ComparisonHelpers.EqualsFloating(expected.
Y
, actual.
Y
, precision)
System.Windows.Forms (4)
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\ModernButtonDarkModeRenderer.cs (1)
221
bounds.
Y
+ inset,
System\Windows\Forms\Controls\Buttons\ButtonInternal\DarkMode\SystemButtonDarkModeRenderer.cs (1)
308
bounds.
Y
+ inset,
System\Windows\Forms\Layout\TableLayout.cs (1)
1177
float top = displayRectF.
Y
;
System\Windows\Forms\Rendering\RadioButton\AnimatedRadioGlyphRenderer.cs (1)
164
normalBounds.
Y
+ ((normalBounds.Height - dotDiameter) / 2f),