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)
3263
set => SetBounds(_x, value, _width, _height, BoundsSpecified.
Y
);
5385
if ((specified & BoundsSpecified.
Y
) != 0)
10098
if ((specified & BoundsSpecified.
Y
) == BoundsSpecified.None)
System\Windows\Forms\Form.cs (3)
5246
_restoredWindowBoundsSpecified |= (specified & (BoundsSpecified.X | BoundsSpecified.
Y
));
5256
if ((specified & BoundsSpecified.
Y
) != 0)
5280
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
) &&