4 references to VAlign
System.Windows.Forms (4)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.cs (1)
456
_textRectangle.Y = LayoutUtils.
VAlign
(_textRectangle.Size, new Rectangle(Point.Empty, _maxItemSize), ContentAlignment.MiddleCenter).Y;
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.ToolStripMenuItemInternalLayout.cs (2)
74
arrowRect.Y = LayoutUtils.
VAlign
(arrowRect.Size, _ownerItem.ClientBounds, ContentAlignment.MiddleCenter).Y;
130
imageRect.Y = LayoutUtils.
VAlign
(imageRect.Size, _ownerItem.ClientBounds, ContentAlignment.MiddleCenter).Y;
System\Windows\Forms\Layout\LayoutUtils.cs (1)
287
return
VAlign
(alignThis, HAlign(alignThis, withinThis, align), align);