12 references to Y
System.Windows.Forms (9)
System\Windows\Forms\BoundsSpecified.cs (2)
34
/// Both <see cref="X"/> and <see cref="
Y
"/> coordinates of the
37
Location = X |
Y
,
System\Windows\Forms\Control.cs (3)
3442
set => SetBounds(_x, value, _width, _height, BoundsSpecified.
Y
);
5609
if ((specified & BoundsSpecified.
Y
) != 0)
10827
if ((specified & BoundsSpecified.
Y
) == BoundsSpecified.None)
System\Windows\Forms\Form.cs (3)
5262
_restoredWindowBoundsSpecified |= (specified & (BoundsSpecified.X | BoundsSpecified.
Y
));
5272
if ((specified & BoundsSpecified.
Y
) != 0)
5296
if ((specified & BoundsSpecified.
Y
) != 0)
System\Windows\Forms\Layout\CommonProperties.cs (1)
291
bool yChangedButNotSpecified = ((specified & BoundsSpecified.
Y
) == BoundsSpecified.None) & y != originalBounds.Y;
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\Behavior\ResizeBehavior.cs (3)
701
specified |= BoundsSpecified.
Y
;
782
if (((specified & BoundsSpecified.
Y
) == BoundsSpecified.
Y
) &&