468 references to Bottom
System.Drawing (1)
misc\GDI\NativeMethods.cs (1)
182this.bottom = r.Bottom;
System.Web.DataVisualization (14)
Common\General\ChartGraphics.cs (10)
2434 this.DrawLine(markPen, absPositionRounded.Left, absPositionRounded.Top, absPositionRounded.Left, absPositionRounded.Bottom); 2435 this.DrawLine(markPen, absPositionRounded.Right, absPositionRounded.Top, absPositionRounded.Right, absPositionRounded.Bottom); 2440 this.DrawLine(markPen, absPositionRounded.Left, absPositionRounded.Bottom, absPositionRounded.Right, absPositionRounded.Bottom); 2451 absPositionRounded.Bottom, 2453 absPositionRounded.Bottom); 2460 (axis.AxisPosition == AxisPosition.Top) ? absPositionRounded.Top : absPositionRounded.Bottom, 2483 (axis.AxisPosition == AxisPosition.Top) ? absPositionRounded.Top : absPositionRounded.Bottom, 2569 leftLine[0].Y = absPositionRounded.Bottom; 2576 rightLine[0].Y = absPositionRounded.Bottom;
Common\General\Legend.cs (2)
2472 separatorPosition.Y = legendItem.Cells[0].cellPosition.Bottom; 2542 this._legendItemsAreaPosition.Bottom + (this._truncatedDotsSize + this._offset.Height) / 2);
Common\General\LegendColumns.cs (2)
2166 imagePosition.Y = this.cellPosition.Bottom - imagePosition.Height; 2271 seriesMarkerPosition.Y = this.cellPosition.Bottom - seriesMarkerPosition.Height;
System.Windows.Forms (245)
misc\GDI\NativeMethods.cs (1)
182this.bottom = r.Bottom;
misc\GDI\WindowsGraphics2.cs (2)
127DrawEllipse(pen, brush, bounds.Left, bounds.Top, bounds.Right, bounds.Bottom); 569adjustedBounds.Y = adjustedBounds.Bottom - textHeight;
winforms\Managed\System\WinForms\ButtonInternal\ButtonBaseAdapter.cs (8)
448Point p3 = new Point(r.Left , r.Bottom - 1); // bottom inner left. 449Point p4 = new Point(r.Right - 1, r.Bottom - 1); // inner bottom right. 1374int textBottom = Math.Min(layout.textBounds.Bottom, layout.field.Bottom); 1421bottom = Math.Min(layout.textBounds.Bottom, maxBounds.Bottom); 1427bottom = Math.Min(layout.textBounds.Bottom, layout.field.Bottom);
winforms\Managed\System\WinForms\ButtonInternal\ButtonPopupAdapter.cs (8)
102g.DrawLine(windowFrame, r.Left + 1, r.Top + 1, r.Left + 1, r.Bottom - 2); 105g.DrawLine(windowFrame, r.Left, r.Bottom - 1, r.Right, r.Bottom - 1); 106g.DrawLine(windowFrame, r.Right - 1, r.Top, r.Right - 1, r.Bottom); 110g.DrawLine(highlight, r.Left, r.Top, r.Left, r.Bottom); 113g.DrawLine(buttonShadow, r.Left + 1, r.Bottom - 2, r.Right - 2, r.Bottom - 2); 114g.DrawLine(buttonShadow, r.Right - 2, r.Top + 1, r.Right - 2, r.Bottom - 2);
winforms\Managed\System\WinForms\ButtonInternal\ButtonStandardAdapter.cs (1)
98NativeMethods.RECT r = new NativeMethods.RECT(bounds.X, bounds.Y, bounds.Right, bounds.Bottom);
winforms\Managed\System\WinForms\ButtonInternal\CheckBoxBaseAdapter.cs (7)
180wg.DrawLine(high, r.Right-1 , r.Top, r.Right-1, r.Bottom); 181wg.DrawLine(high, r.Left, r.Bottom-1, r.Right, r.Bottom-1); 183wg.DrawLine(shadow, r.Left, r.Top, r.Left , r.Bottom); 186wg.DrawLine(face, r.Right - 2, r.Top + 1, r.Right - 2, r.Bottom - 1); 187wg.DrawLine(face, r.Left + 1, r.Bottom - 2, r.Right - 1, r.Bottom - 2);
winforms\Managed\System\WinForms\ComboBox.cs (2)
6104Rectangle bottomOwnerDrawArea = new Rectangle(0,innerBorder.Bottom,comboBox.Width, comboBox.Height-innerBorder.Bottom);
winforms\Managed\System\WinForms\Control.cs (2)
9748clientRectangle.Right, clientRectangle.Bottom); 9749e.Graphics.DrawLine(pen, clientRectangle.Left, clientRectangle.Bottom,
winforms\Managed\System\WinForms\ControlPaint.cs (11)
1198graphics.DrawLine(pen, bounds.X + 1, bounds.Bottom - 1, bounds.Right -2, bounds.Bottom - 1); 1199graphics.DrawLine(pen, bounds.X, bounds.Y + 1, bounds.X, bounds.Bottom -2); 1200graphics.DrawLine(pen, bounds.Right - 1, bounds.Y + 1, bounds.Right - 1, bounds.Bottom -2); 1206graphics.DrawLine(pen, midx, bounds.Y, midx, bounds.Bottom - 2); 1224graphics.DrawLine(pen, midx - 1, bounds.Bottom - 3, midx+1, bounds.Bottom - 3); 1225graphics.DrawLine(pen, midx - 2, bounds.Bottom - 4, midx+2, bounds.Bottom - 4); 1801SafeNativeMethods.Rectangle(new HandleRef(null, dc), rectangle.X, rectangle.Y, rectangle.Right, rectangle.Bottom); 2415int bottom = bound.Bottom;
winforms\Managed\System\WinForms\DataGrid.cs (8)
4525refresh.Height = layout.Inside.Bottom - cy; 4704r.Y = Math.Min(inside.Bottom - 3, r.Y); 6285Debug.Assert(y >= inside.Y && y < inside.Bottom, "y must be inside the vertical bounds of the data"); 6291int bottom = inside.Bottom; 6319if (cy > inside.Bottom) { 6809data.Bottom, 6827layout.Data.Bottom, 7305g.FillRectangle(br, bounds.X, bounds.Bottom - 2, bounds.Width + 2, 2);
winforms\Managed\System\WinForms\DataGridCaption.cs (1)
572border.Y = textBounds.Bottom - textPadding;
winforms\Managed\System\WinForms\DataGridParentRows.cs (5)
559border.Y = bounds.Bottom - borderWidth; 719if (rowBounds.Y > bounds.Bottom) 726g.DrawLine(gridLinePen, rowBounds.X, rowBounds.Bottom, 728rowBounds.Bottom); 959paintBounds.Bottom);
winforms\Managed\System\WinForms\DataGridRelationshipRow.cs (4)
543dataBounds.Bottom, 772outline.X + outline.Height/2, outline.Bottom - indent - 1); // -1... hinting 776points[0] = new Point(outline.X + outline.Height/2, outline.Bottom); 791while (cy < relRect.Bottom) {
winforms\Managed\System\WinForms\DataGridRow.cs (1)
445bounds.Bottom - borderWidth,
winforms\Managed\System\WinForms\DataGridViewButtonCell.cs (2)
451rectThemeMargins.Height = DATAGRIDVIEWBUTTONCELL_themeMargin - rectContent.Bottom; 732valBounds.Height -= borderWidths.Bottom;
winforms\Managed\System\WinForms\DataGridViewCell.cs (34)
3630graphics.FillRectangle(this.DataGridView.GetCachedBrush(dividerHeightColor), bounds.X, bounds.Bottom - dividerThickness, bounds.Width, dividerThickness); 3646graphics.DrawLine(penGridColor, bounds.X, bounds.Y, bounds.X, bounds.Bottom - 1); 3650graphics.DrawLine(penControlDark, bounds.X, bounds.Y, bounds.X, bounds.Bottom - 1); 3654graphics.DrawLine(penControlLightLight, bounds.X, bounds.Y, bounds.X, bounds.Bottom - 1); 3659y2 = bounds.Bottom - 3; 3669graphics.DrawLine(penBackColor, bounds.X, bounds.Y, bounds.X, bounds.Bottom - 1); 3675y2 = bounds.Bottom - 1; 3685graphics.DrawLine(penControlDark, bounds.X, bounds.Y, bounds.X, bounds.Bottom - 1); 3691y2 = bounds.Bottom - 1; 3701graphics.DrawLine(penControlLightLight, bounds.X, bounds.Y, bounds.X, bounds.Bottom - 1); 3709graphics.DrawLine(penGridColor, bounds.Right - 1, bounds.Y, bounds.Right - 1, bounds.Bottom - 1); 3713graphics.DrawLine(penControlLightLight, bounds.Right - 1, bounds.Y, bounds.Right - 1, bounds.Bottom - 1); 3717graphics.DrawLine(penControlDark, bounds.Right - 1, bounds.Y, bounds.Right - 1, bounds.Bottom - 1); 3722y2 = bounds.Bottom - 3; 3732graphics.DrawLine(penBackColor, bounds.Right - 1, bounds.Y, bounds.Right - 1, bounds.Bottom - 1); 3738y2 = bounds.Bottom - 1; 3748graphics.DrawLine(penControlDark, bounds.Right - 2, bounds.Y, bounds.Right - 2, bounds.Bottom - 1); 3754y2 = bounds.Bottom - 1; 3765graphics.DrawLine(penControlLightLight, bounds.Right - 2, bounds.Y, bounds.Right - 2, bounds.Bottom - 1); 3872graphics.DrawLine(penGridColor, bounds.X, bounds.Bottom - 1, bounds.Right - 1, bounds.Bottom - 1); 3881graphics.DrawLine(penControlLightLight, bounds.X, bounds.Bottom - 1, x2, bounds.Bottom - 1); 3892graphics.DrawLine(penControlDark, x1, bounds.Bottom - 1, x2, bounds.Bottom - 1); 3916graphics.DrawLine(penBackColor, x1, bounds.Bottom - 1, x2, bounds.Bottom - 1); 3917graphics.DrawLine(penControlDark, x1 + 1, bounds.Bottom - 1, x2 - 1, bounds.Bottom - 1); 4376rectPadding.Y = bounds.Bottom - cellStyle.Padding.Bottom; 4587if (cellClip.Bottom <= cellBounds.Bottom - borderAndPaddingWidths.Height) 4589hEditingPanel -= cellBounds.Bottom - cellClip.Bottom;
winforms\Managed\System\WinForms\DataGridViewCheckBoxCell.cs (3)
1176valBounds.Height -= borderWidths.Bottom; 1318checkBoxY = valBounds.Bottom - checkBoxSize.Height; 1394g.DrawLine(pen, checkBounds.Left, checkBounds.Top, checkBounds.Left, checkBounds.Bottom-1);
winforms\Managed\System\WinForms\DataGridViewColumnHeaderCell.cs (3)
796valBounds.Height -= borderWidths.Bottom; 1252Rectangle cornerClip = new Rectangle(bounds.Left, bounds.Bottom-2, 2, 2); 1255cornerClip = new Rectangle(bounds.Right-2, bounds.Bottom-2, 2, 2);
winforms\Managed\System\WinForms\DataGridViewComboBoxCell.cs (1)
2149valBounds.Height -= borderWidths.Bottom;
winforms\Managed\System\WinForms\DataGridViewHeaderCell.cs (2)
490rectThemeMargins.Height = DATAGRIDVIEWHEADERCELL_themeMargin - rectContent.Bottom; 653valBounds.Height -= borderWidths.Bottom;
winforms\Managed\System\WinForms\DataGridViewImageCell.cs (2)
738imgBounds.Y = bounds.Bottom - imgBounds.Height; 821valBounds.Height -= borderWidths.Bottom;
winforms\Managed\System\WinForms\DataGridViewLinkCell.cs (1)
1014valBounds.Height -= borderWidths.Bottom;
winforms\Managed\System\WinForms\DataGridViewMethods.cs (31)
3058r.Y = Math.Min(inside.Bottom - 3, r.Y); 6085int y = Math.Min(e.Y + this.mouseBarOffset, this.layout.Data.Bottom - 1); 6356int y = Math.Min(e.Y + this.mouseBarOffset, this.layout.Data.Bottom - 1); 7149int height = rowRect.Bottom - columnRect.Bottom; 8668if (mouseY >= rectScrollingArea.Top && mouseY <= rectScrollingArea.Bottom) 8731Debug.Assert(mouseY > rectScrollingArea.Bottom); 8738yOffset = mouseY - rectScrollingArea.Bottom; // yOffset strictly positive 8910else if (mouseY > rectScrollingArea.Bottom) 8919yOffset = mouseY - rectScrollingArea.Bottom; // yOffset strictly positive 8924mouseY = rectScrollingArea.Bottom-1; 8931mouseY = rectScrollingArea.Bottom-1; 9132if (cy > data.Bottom) 9153if (cy > data.Bottom) 9172if (cutOverflow && cy + this.Rows.SharedRow(indexTmp).GetHeight(indexTmp) > data.Bottom) 9174displayHeight = data.Bottom - cy; 9202Debug.Assert(y >= data.Y-1 && y < data.Bottom, "y must be inside the vertical bounds of the data area."); 9214while (indexTmp != -1 && cy < data.Bottom) 9234while (indexTmp != -1 && cy < data.Bottom) 9531else if (this.layout.ColumnHeaders.Bottom - y < DATAGRIDVIEW_rowSizingHotZone) 9537hti.mouseBarOffset = this.layout.ColumnHeaders.Bottom - y - 1; 10143bottom = data.Bottom; 10149bottom = data.Bottom; 10173bottom = this.GetRowDisplayRectangle(i, true /*cutOverflow*/).Bottom; 10190bottom = rowDisplayRect.Bottom; 10480this.layout.Data.Bottom, 10497this.layout.Data.Bottom, 19376if (pt.Y > rect.Bottom && step > 0) 19379new Size(ClientSize.Width, ClientSize.Height - (pt.Y - rect.Bottom) - step))); 26395while (yRowBottomEdge > this.layout.Data.Bottom && rowIndex > firstDisplayedScrollingRow) 26399if (yRowBottomEdge > this.layout.Data.Bottom)
winforms\Managed\System\WinForms\DataGridViewRowHeaderCell.cs (1)
788valBounds.Height -= borderWidths.Bottom;
winforms\Managed\System\WinForms\DataGridViewTextBoxCell.cs (1)
699valBounds.Height -= borderWidths.Bottom;
winforms\Managed\System\WinForms\DataGridViewTopLeftHeaderCell.cs (4)
278valBounds.Height -= borderWidths.Bottom; 410graphics.DrawLine(penControlDark, bounds.X, bounds.Y, bounds.X, bounds.Bottom - 1); 417graphics.DrawLine(penControlLightLight, bounds.X, bounds.Y, bounds.X, bounds.Bottom - 1); 424graphics.DrawLine(penControlDark, bounds.X + 1, bounds.Y + 1, bounds.X + 1, bounds.Bottom - 1);
winforms\Managed\System\WinForms\DataGridViewUtilities.cs (3)
420ptTextLocation.Y = cellBounds.Bottom - sizeText.Height; 425ptTextLocation.Y = cellBounds.Bottom - sizeText.Height; 430ptTextLocation.Y = cellBounds.Bottom - sizeText.Height;
winforms\Managed\System\WinForms\DrawListViewColumnHeaderEventArgs.cs (4)
179graphics.DrawLine(SystemPens.ControlLightLight, r.X, r.Y, r.X, r.Bottom); 183graphics.DrawLine(SystemPens.ControlDark, r.X + 1, r.Bottom, r.Right, r.Bottom); 184graphics.DrawLine(SystemPens.ControlDark, r.Right, r.Y + 1, r.Right, r.Bottom);
winforms\Managed\System\WinForms\GroupBoxRenderer.cs (2)
208clipMiddle.Y = textBounds.Bottom; 209clipMiddle.Height -= (textBounds.Bottom - boxBounds.Top);
winforms\Managed\System\WinForms\Layout\DockAndAnchorLayout.cs (6)
215bottom = bottom > 0 ? bottom : element.Bounds.Bottom + Math.Abs(bottom); 289Rectangle newElementBounds = new Rectangle(remainingBounds.X, remainingBounds.Bottom - elementSize.Height, elementSize.Width, elementSize.Height); 566anchorInfo.Bottom = element.Bounds.Bottom; 842prefSize.Height = Math.Max(prefSize.Height, elementSpace.Bottom); 863prefSize.Height = Math.Max(prefSize.Height, elementSpace.Bottom + anchorDest.Height); 866prefSize.Height = Math.Max(prefSize.Height, anchorDest.Bottom);
winforms\Managed\System\WinForms\Layout\FlowLayout.cs (2)
342value.Y = DisplayRect.Bottom - value.Bottom;
winforms\Managed\System\WinForms\Layout\LayoutUtils.cs (4)
482Debug.Assert(region1.Bottom == region2.Top, "Adjacency error."); 487Debug.Assert(region2.Bottom == region1.Top, "Adjacency error."); 515int bottom = (specified & AnchorStyles.Bottom) != 0 ? substitutionBounds.Bottom : originalBounds.Bottom;
winforms\Managed\System\WinForms\LinkLabel.cs (1)
516yLoc = clientRect.Bottom - textRect.Height;
winforms\Managed\System\WinForms\ListView.cs (2)
4725rectInvalid.Height += this.ClientRectangle.Bottom - rectInvalid.Bottom;
winforms\Managed\System\WinForms\ListViewItem.cs (1)
1035return this.ListView.FindNearestItem(searchDirection, r.Left, r.Bottom);
winforms\Managed\System\WinForms\NativeMethods.cs (2)
3094this.bottom = r.Bottom; 4039this.bottom = r.Bottom;
winforms\Managed\System\WinForms\StatusStrip.cs (2)
576gripLocation = new NativeMethods.POINT(SizeGripBounds.Left, SizeGripBounds.Bottom); 579gripLocation = new NativeMethods.POINT(SizeGripBounds.Right, SizeGripBounds.Bottom);
winforms\Managed\System\WinForms\TableLayoutPanel.cs (1)
468g.DrawLine(SystemPens.ControlDark, tableBounds.Right, tableBounds.Y, tableBounds.Right, tableBounds.Bottom);
winforms\Managed\System\WinForms\ToolStrip.cs (13)
2354if (!down && otherItem.Bounds.Bottom > selectedItem.Bounds.Top) { 2358else if (down && otherItem.Bounds.Top < selectedItem.Bounds.Bottom) { 2365Point otherItemMidLocation = new Point(otherItem.Bounds.X + otherItem.Width/2, (down)? otherItem.Bounds.Top : otherItem.Bounds.Bottom); 2425else if ((!down && tanWinner.Bounds.Bottom <= hypotenuseWinner.Bounds.Top) 2426||(down && tanWinner.Bounds.Top > hypotenuseWinner.Bounds.Bottom)) { 3942new Point[] { new Point(verticalBeamStart, lastInsertionMarkRect.Y), new Point(verticalBeamStart, lastInsertionMarkRect.Bottom-1), // first vertical line 3943 new Point(verticalBeamStart+1, lastInsertionMarkRect.Y), new Point(verticalBeamStart+1, lastInsertionMarkRect.Bottom-1), //second vertical line 3947new Point[] { new Point(start, lastInsertionMarkRect.Bottom-1), new Point(start + widthOfBeam-1, lastInsertionMarkRect.Bottom-1), //bottom line 3948 new Point(start+1, lastInsertionMarkRect.Bottom -2), new Point(start + widthOfBeam-2, lastInsertionMarkRect.Bottom-2),//bottom second line 4447 clientBounds.Contains(clientBounds.X, item.Bounds.Bottom); 5485insertionRect = new Rectangle(owner.Margin.Left, item.Bounds.Bottom, owner.Width - (owner.Margin.Horizontal) -1, ToolStrip.insertionBeamWidth);
winforms\Managed\System\WinForms\ToolStripDropDownButton.cs (1)
300dropDownArrowRect = new Rectangle(0,options.client.Bottom + scaledDropDownArrowPadding.Top, ownerItem.Bounds.Width-1, dropDownArrowSize.Height);
winforms\Managed\System\WinForms\ToolStripDropDownMenu.cs (7)
521|| !displayRect.Contains(displayRect.X, nextItem.Bounds.Bottom)) { 528delta = nextItem.Bounds.Bottom - (displayRect.Y + displayRect.Height); 543if (displayRect.Contains(displayRect.X, this.Items[index].Bounds.Bottom - delta)) { 545delta += (this.Items[index].Bounds.Bottom - delta) - displayRect.Top; 670&& displayRectangle.Contains(displayRectangle.X, adjustedLastItemBounds.Bottom)) { 691&& displayRectangle.Contains(displayRectangle.X, adjustedLastItemBounds.Bottom)) { 819maxY = Math.Max(maxY, item.Bounds.Bottom);
winforms\Managed\System\WinForms\ToolStripHighContrastRenderer.cs (1)
323 g.DrawLine(foreColorPen, startX, bounds.Top, startX, bounds.Bottom - 1);
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
929location = new Point(0, dragRect.Bottom -1);
winforms\Managed\System\WinForms\ToolStripPanelCell.cs (2)
276int spaceToFree = bounds.Bottom - displayRectangle.Bottom;
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (6)
487int spaceToFree = cell.CachedBounds.Bottom - RowManager.DisplayRectangle.Bottom; 1688freedSpace += DisplayRectangle.Bottom - lastCell.Bounds.Bottom; 1754int spaceToFree = (lastCell != null)? lastCell.Bounds.Bottom - newBounds.Height : 0; 1897lastCellMargin.Top = Math.Max(0,locationToDrag.Y - nextCell.Bounds.Bottom);
winforms\Managed\System\WinForms\ToolStripProfessionalRenderer.cs (3)
859endGradient.Y = bounds.Bottom - endGradient.Height; 1313g.DrawLine(leftPen, startX, bounds.Top, startX, bounds.Bottom - 1); 1317g.DrawLine(rightPen, startX, bounds.Top + 1, startX, bounds.Bottom);
winforms\Managed\System\WinForms\ToolStripRenderer.cs (1)
1036baseRect.Offset(sizeGripBounds.X, sizeGripBounds.Bottom - 12 /*height of pyramid (10px) + 2px padding from bottom*/);
winforms\Managed\System\WinForms\ToolStripSplitStackLayout.cs (3)
390int lastBottom = displayRectangle.Bottom; 533if ((itemBounds.Bottom > displayRectangle.Bottom)
winforms\Managed\System\WinForms\ToolStripSystemRenderer.cs (14)
241e.Graphics.DrawLine(SystemPens.ButtonHighlight, 0,bounds.Bottom-1,bounds.Width, bounds.Bottom-1); 242e.Graphics.DrawLine(SystemPens.InactiveBorder, 0,bounds.Bottom-2,bounds.Width,bounds.Bottom-2); 245e.Graphics.DrawLine(SystemPens.ButtonHighlight, 0,bounds.Bottom-1,bounds.Width, bounds.Bottom-1); 246e.Graphics.DrawLine(SystemPens.ButtonShadow, 0,bounds.Bottom-2,bounds.Width,bounds.Bottom-2); 629g.DrawLine(leftPen, startX, bounds.Top, startX, bounds.Bottom); 633g.DrawLine(rightPen, startX, bounds.Top, startX, bounds.Bottom); 671g.DrawLine(leftPen, bounds.Left, bounds.Top, bounds.Left, bounds.Bottom-1); 672g.DrawLine(rightPen, bounds.Right-1, bounds.Top, bounds.Right -1, bounds.Bottom-1); 673g.DrawLine(bottomPen, bounds.Left, bounds.Bottom-1, bounds.Right -1, bounds.Bottom -1);
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
875g.FillRectangle(b, 0, clientRect.Bottom, this.Width, this.Height - clientRect.Height); // bottom border
winforms\Managed\System\WinForms\ToolTip.cs (9)
1575visibleRect.bottom = (r.bottom > screen.WorkingArea.Bottom) ? screen.WorkingArea.Bottom:r.bottom; 1757int pointY = (toolRectangle.Top + toolRectangle.Bottom) / 2; 1804possibleLocations[BOTTOM_LOCATION_INDEX] = new Rectangle(centeredX, toolRectangle.Bottom, width, height); 2169if (moveToLocation.Y + tipSize.Height> screen.WorkingArea.Bottom) { 2170moveToLocation.Y = screen.WorkingArea.Bottom - tipSize.Height; 2451if (wp->y + wp->cy + currentCursor.Size.Height - currentCursor.HotSpot.Y > screen.WorkingArea.Bottom) { 2476if (wp->y + wp->cy > screen.WorkingArea.Bottom) { 2477wp->y = screen.WorkingArea.Bottom - wp->cy;
winforms\Managed\System\WinForms\UpDownBase.cs (3)
814Rectangle clipBottom = new Rectangle(bounds.Left, bounds.Bottom - border, bounds.Width, border); 1736e.Graphics.DrawLine(pen, clientRect.Left, clientRect.Bottom - 1, clientRect.Right - 1, clientRect.Bottom - 1);
winforms\Managed\System\WinForms\WinFormsUtils.cs (4)
122if (bounds.Bottom > constrainingBounds.Bottom) { 124bounds.Y = constrainingBounds.Bottom - 1 - bounds.Height; 630HandleRef hClippingRegion = new HandleRef(null, SafeNativeMethods.CreateRectRgn(viewportOrg.x + bounds.Left, viewportOrg.y + bounds.Top, viewportOrg.x + bounds.Right, viewportOrg.y + bounds.Bottom));
System.Windows.Forms.DataVisualization (14)
Common\General\ChartGraphics.cs (10)
2434 this.DrawLine(markPen, absPositionRounded.Left, absPositionRounded.Top, absPositionRounded.Left, absPositionRounded.Bottom); 2435 this.DrawLine(markPen, absPositionRounded.Right, absPositionRounded.Top, absPositionRounded.Right, absPositionRounded.Bottom); 2440 this.DrawLine(markPen, absPositionRounded.Left, absPositionRounded.Bottom, absPositionRounded.Right, absPositionRounded.Bottom); 2451 absPositionRounded.Bottom, 2453 absPositionRounded.Bottom); 2460 (axis.AxisPosition == AxisPosition.Top) ? absPositionRounded.Top : absPositionRounded.Bottom, 2483 (axis.AxisPosition == AxisPosition.Top) ? absPositionRounded.Top : absPositionRounded.Bottom, 2569 leftLine[0].Y = absPositionRounded.Bottom; 2576 rightLine[0].Y = absPositionRounded.Bottom;
Common\General\Legend.cs (2)
2472 separatorPosition.Y = legendItem.Cells[0].cellPosition.Bottom; 2542 this._legendItemsAreaPosition.Bottom + (this._truncatedDotsSize + this._offset.Height) / 2);
Common\General\LegendColumns.cs (2)
2166 imagePosition.Y = this.cellPosition.Bottom - imagePosition.Height; 2271 seriesMarkerPosition.Y = this.cellPosition.Bottom - seriesMarkerPosition.Height;
System.Workflow.Activities (29)
Designers\ConditionalDesigner.cs (2)
109diamondRectangle.Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height * 3 / 2 + (compositeDesignerTheme.ConnectorSize.Height * 3 / 2 - diamondRectangle.Height) / 2 + 1; 123new Point(rectangle.Left + rectangle.Width / 2, rectangle.Bottom - 1),
Designers\ListenDesigner.cs (1)
86roundRectangle.Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height * 3 / 2 + (compositeDesignerTheme.ConnectorSize.Height * 3 / 2 - roundRectangle.Height) / 2;
Designers\SetStateDesigner.cs (1)
95textRectangle.Bottom + (margin.Height / 2));
Designers\StateDesigner.cs (9)
814Point point = new Point(midHorz, bounds.Bottom); 1413int minimumY = _eventHandlersLayout.Bounds.Bottom + DefaultStateDesignerAutoLayoutDistance; 1457maximumY = Math.Max(maximumY, stateDesigner.Bounds.Bottom); 1461if (maximumY > this.Bounds.Bottom) 1463Size newSize = new Size(this.Size.Width, this.Size.Height + ((maximumY + DefaultStateDesignerAutoLayoutDistance) - this.Bounds.Bottom)); 1473int maximumY = _eventHandlersLayout.Bounds.Bottom + DefaultStateDesignerAutoLayoutDistance; 1485maximumY = stateDesigner.Bounds.Bottom + DefaultStateDesignerAutoLayoutDistance; 1505newSize.Height = Math.Max(newSize.Height, bounds.Bottom); 1650int eventHandlersLayoutBottom = this._statesLayout.EventHandlersLayout.Bounds.Bottom;
Designers\StateDesigner.Layouts.cs (7)
711graphics.DrawLine(designerTheme.BorderPen, bounds.Left, bounds.Bottom, bounds.Right, bounds.Bottom); 1025graphics.DrawLine(designerTheme.BorderPen, rectangle.Left, rectangle.Bottom, rectangle.Right, rectangle.Bottom); 1183int y = _titleBarLayout.Bounds.Bottom + 1; 1203Point location = new Point(this.Location.X, _titleBarLayout.Bounds.Bottom); 1381origin.Y = _designerLayout.Bounds.Bottom + ambientTheme.SelectionSize.Height + ActiveDesignerPadding;
Designers\StateDesignerConnector.cs (2)
235path.AddLine(new Point(bounds.Right, bounds.Top + bounds.Height / 2), new Point(bounds.Left + bounds.Width / 2, bounds.Bottom)); 236path.AddLine(new Point(bounds.Left + bounds.Width / 2, bounds.Bottom), new Point(bounds.Left, bounds.Top + bounds.Height / 2));
Designers\StateMachineDesignerPaint.cs (3)
71if ((top + height) > bounds.Bottom) 72height -= rectangle.Bottom - bounds.Bottom;
Designers\WhileDesigner.cs (3)
55points[0].Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height / 3; 57points[1].Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height / 3; 64DrawConnectors(e.Graphics, compositeDesignerTheme.ForegroundPen, new Point[] { points[0], new Point(bounds.Left + bounds.Width / 2, bounds.Bottom) }, LineAnchor.None, LineAnchor.None);
Rules\Design\Dialogs\IntellisenseTextBox.cs (1)
449if (listboxRectangle.Bottom > topLevelControlSize.Height)
System.Workflow.ComponentModel (161)
AuthoringOM\Design\ActivityDesigner.cs (6)
956hitRectangle = new Rectangle(bounds.Left, bounds.Bottom, bounds.Width, bounds.Bottom - bounds.Bottom); 1189connections.Add(new Point(bounds.Left + bounds.Width / 2, bounds.Bottom)); 3065formShown = (Form.ActiveForm.Location == designer.PointToScreen(new Point(activatedBounds.Left, activatedBounds.Bottom))); 3119this.activeDesigner.OnShowSmartTagVerbs(new Point(bounds.Left, bounds.Bottom + 1));
AuthoringOM\Design\ActivityPreviewDesigner.cs (5)
170int headerHeight = this.previewStrip.Bounds.Bottom - Location.Y; 581this.previewWindow.Location = new Point(bounds.Left + bounds.Width / 2 - this.previewWindow.Size.Width / 2, previewStripRectangle.Bottom + 3 * e.AmbientTheme.Margin.Height); 584this.separatorLine[0].Y = previewStripRectangle.Bottom; 588this.separatorLine[1].Y = previewStripRectangle.Bottom; 593int headerHeight = this.previewStrip.Bounds.Bottom - Location.Y;
AuthoringOM\Design\Connector.cs (11)
524path.AddLine(new Point(bounds.Right, bounds.Top + bounds.Height / 2), new Point(bounds.Left + bounds.Width / 2, bounds.Bottom)); 525path.AddLine(new Point(bounds.Left + bounds.Width / 2, bounds.Bottom), new Point(bounds.Left, bounds.Top + bounds.Height / 2)); 1699designerEdgeCover.Add(DesignerEdges.Left, new Point[] { new Point(bounds.Left, bounds.Top), new Point(bounds.Left, bounds.Bottom) }); 1701designerEdgeCover.Add(DesignerEdges.Right, new Point[] { new Point(bounds.Right, bounds.Top), new Point(bounds.Right, bounds.Bottom) }); 1702designerEdgeCover.Add(DesignerEdges.Bottom, new Point[] { new Point(bounds.Left, bounds.Bottom), new Point(bounds.Right, bounds.Bottom) }); 1820begin.Y = Math.Min(Math.Max(begin.Y, enclosingRectangle.Top + 1), enclosingRectangle.Bottom - 1); 2791AddCover(new ConnectorSegment(new Point(rectangle.Left, rectangle.Top), new Point(rectangle.Left, rectangle.Bottom))); 2792AddCover(new ConnectorSegment(new Point(rectangle.Right, rectangle.Top), new Point(rectangle.Right, rectangle.Bottom))); 2794AddCover(new ConnectorSegment(new Point(rectangle.Left, rectangle.Bottom), new Point(rectangle.Right, rectangle.Bottom)));
AuthoringOM\Design\DesignerHelpers.cs (67)
222rectangle.Y = destination.Bottom - rectangle.Height; 305graphics.DrawLine(lightPen, bounds.Left + 1, bounds.Bottom - 1, bounds.Left + 1, bounds.Top + 1); 307graphics.DrawLine(darkPen, bounds.Left + 1, bounds.Bottom - 1, bounds.Right - 1, bounds.Bottom - 1); 308graphics.DrawLine(darkPen, bounds.Right - 1, bounds.Bottom - 1, bounds.Right - 1, bounds.Top + 1); 309graphics.DrawLine(darkdarkPen, bounds.Left, bounds.Bottom, bounds.Right, bounds.Bottom); 310graphics.DrawLine(darkdarkPen, bounds.Right, bounds.Bottom, bounds.Right, bounds.Top); 337for (int gridCoOrdY = gridStart.Y; gridCoOrdY <= viewableRectangle.Bottom; gridCoOrdY += Math.Max(ambientTheme.GridSize.Height, 1)) 342((gridCoOrdY + ambientTheme.GridSize.Height / 2) >= viewableRectangle.Top && (gridCoOrdY + ambientTheme.GridSize.Height / 2) <= viewableRectangle.Bottom)) 382graphics.DrawLine(CompositeDesignerTheme.ExpandButtonForegoundPen, boundingRect.Left + boundingRect.Width / 2, boundingRect.Top + 2, boundingRect.Left + boundingRect.Width / 2, boundingRect.Bottom - 2); 583graphics.DrawLine(Pens.Red, bounds.Left, bounds.Top, bounds.Right, bounds.Bottom); 584graphics.DrawLine(Pens.Red, bounds.Right, bounds.Top, bounds.Left, bounds.Bottom); 758roundedRectangle.AddLine(rectangle.Left, rectangle.Bottom - radius, rectangle.Left, rectangle.Top + radius); 762roundedRectangle.AddLine(rectangle.Right, rectangle.Top + radius, rectangle.Right, rectangle.Bottom - radius); 763roundedRectangle.AddArc(rectangle.Right - diameter, rectangle.Bottom - diameter, diameter, diameter, 0.0f, 90.0f); 764roundedRectangle.AddLine(rectangle.Right - radius, rectangle.Bottom, rectangle.Left + radius, rectangle.Bottom); 765roundedRectangle.AddArc(rectangle.Left, rectangle.Bottom - diameter, diameter, diameter, 90.0f, 90.0f); 831pagePaths[0].AddLine(pageBounds.Right, pageBounds.Top, pageBounds.Right, pageBounds.Bottom); 832pagePaths[0].AddLine(pageBounds.Right, pageBounds.Bottom, pageBounds.Left, pageBounds.Bottom); 833pagePaths[0].AddLine(pageBounds.Left, pageBounds.Bottom, pageBounds.Left, pageBounds.Top + pageFoldSize); 846pagePaths[0].AddLine(pageBounds.Right, pageBounds.Top, pageBounds.Right, pageBounds.Bottom); 847pagePaths[0].AddLine(pageBounds.Right, pageBounds.Bottom, pageBounds.Left + pageFoldSize, pageBounds.Bottom); 848pagePaths[0].AddLine(pageBounds.Left + pageFoldSize, pageBounds.Bottom, pageBounds.Left + pageFoldSize, pageBounds.Bottom - pageFoldSize); 849pagePaths[0].AddLine(pageBounds.Left + pageFoldSize, pageBounds.Bottom - pageFoldSize, pageBounds.Left, pageBounds.Bottom - pageFoldSize); 850pagePaths[0].AddLine(pageBounds.Left, pageBounds.Bottom - pageFoldSize, pageBounds.Left, pageBounds.Top); 854pagePaths[1].AddLine(pageBounds.Left + pageFoldSize, pageBounds.Bottom, pageBounds.Left + pageFoldSize, pageBounds.Bottom - pageFoldSize); 855pagePaths[1].AddLine(pageBounds.Left + pageFoldSize, pageBounds.Bottom - pageFoldSize, pageBounds.Left, pageBounds.Bottom - pageFoldSize); 856pagePaths[1].AddLine(pageBounds.Left, pageBounds.Bottom - pageFoldSize, pageBounds.Left + pageFoldSize, pageBounds.Bottom); 866pagePaths[0].AddLine(pageBounds.Right, pageBounds.Top + pageFoldSize, pageBounds.Right, pageBounds.Bottom); 867pagePaths[0].AddLine(pageBounds.Right, pageBounds.Bottom, pageBounds.Left, pageBounds.Bottom); 868pagePaths[0].AddLine(pageBounds.Left, pageBounds.Bottom, pageBounds.Left, pageBounds.Top); 881pagePaths[0].AddLine(pageBounds.Right, pageBounds.Top, pageBounds.Right, pageBounds.Bottom - pageFoldSize); 882pagePaths[0].AddLine(pageBounds.Right, pageBounds.Bottom - pageFoldSize, pageBounds.Right - pageFoldSize, pageBounds.Bottom - pageFoldSize); 883pagePaths[0].AddLine(pageBounds.Right - pageFoldSize, pageBounds.Bottom - pageFoldSize, pageBounds.Right - pageFoldSize, pageBounds.Bottom); 884pagePaths[0].AddLine(pageBounds.Right - pageFoldSize, pageBounds.Bottom, pageBounds.Left, pageBounds.Bottom); 885pagePaths[0].AddLine(pageBounds.Left, pageBounds.Bottom, pageBounds.Left, pageBounds.Top); 889pagePaths[1].AddLine(pageBounds.Right, pageBounds.Bottom - pageFoldSize, pageBounds.Right - pageFoldSize, pageBounds.Bottom - pageFoldSize); 890pagePaths[1].AddLine(pageBounds.Right - pageFoldSize, pageBounds.Bottom - pageFoldSize, pageBounds.Right - pageFoldSize, pageBounds.Bottom); 891pagePaths[1].AddLine(pageBounds.Right - pageFoldSize, pageBounds.Bottom, pageBounds.Right, pageBounds.Bottom - pageFoldSize); 1041if (!NativeMethods.LineTo(this.hdc, gridCoOrd, viewableRectangle.Bottom - 1)) 1054if (!NativeMethods.LineTo(this.hdc, gridCoOrd + gridUnit.Width / 2, viewableRectangle.Bottom - 1)) 1063for (int gridCoOrd = gridStart.Y; gridCoOrd <= viewableRectangle.Bottom; gridCoOrd += Math.Max(gridUnit.Height, 1)) 1074if (showMinorGrid && (gridCoOrd + gridUnit.Height / 2) >= viewableRectangle.Top && (gridCoOrd + gridUnit.Height / 2) <= viewableRectangle.Bottom) 1841distances.Add(DistanceFromPointToLineSegment(point, new Point[] { new Point(rect.Left, rect.Top), new Point(rect.Left, rect.Bottom) })); 1853distances.Add(DistanceFromPointToLineSegment(point, new Point[] { new Point(rect.Right, rect.Top), new Point(rect.Right, rect.Bottom) })); 1859distances.Add(DistanceFromPointToLineSegment(point, new Point[] { new Point(rect.Left, rect.Bottom), new Point(rect.Right, rect.Bottom) })); 1923distances.Add(DistanceBetweenPoints(point, new Point(rect.Right, rect.Bottom))); 1924distances.Add(DistanceBetweenPoints(point, new Point(rect.Right + rect.Width / 2, rect.Bottom))); 1925distances.Add(DistanceBetweenPoints(point, new Point(rect.Left, rect.Bottom))); 1926distances.Add(DistanceBetweenPoints(point, new Point(rect.Left, rect.Bottom - rect.Height / 2)));
AuthoringOM\Design\DesignerWidgets.cs (15)
338this.itemStrip.Location = new Point(leftScrollButtonBounds.Left, leftScrollButtonBounds.Bottom); 498if (buttonRectangle.Y >= this.bounds.Bottom) 499buttonRectangle.Y = this.bounds.Bottom - buttonRectangle.Size.Height; 1309else if (this.workingRectangle.Bottom < bounds.Bottom) 1310fittingOffset.Height -= bounds.Bottom - this.workingRectangle.Bottom; 2374toolInfo.rect.bottom = rectangle.Bottom; 2759graphics.DrawLine(ambientTheme.DropIndicatorPen, dropTargets[activeDropTarget].Left + dropTargets[activeDropTarget].Width / 2, dropTargets[activeDropTarget].Top, dropTargets[activeDropTarget].Left + dropTargets[activeDropTarget].Width / 2, dropTargets[activeDropTarget].Bottom); 3254this.canvasBounds.Location = new Point(value.X + this.bounds.Width / 2 - this.canvasBounds.Width / 2, this.previewModeDescRectangle.Bottom + margin.Height); 3430graphics.DrawLine(SystemPens.ControlDarkDark, canvasRect.Left, canvasRect.Top, canvasRect.Left, canvasRect.Bottom); 3432graphics.DrawLine(SystemPens.ControlLight, canvasRect.Right, canvasRect.Top, canvasRect.Right, canvasRect.Bottom); 3433graphics.DrawLine(SystemPens.ControlLight, canvasRect.Left, canvasRect.Bottom, canvasRect.Right, canvasRect.Bottom); 3435graphics.DrawLine(SystemPens.ControlLight, canvasRect.Left, canvasRect.Top, canvasRect.Left, canvasRect.Bottom);
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (8)
510paintArgs.Graphics.DrawLine(SystemPens.ControlDark, lineRectangle.Left, lineRectangle.Bottom, lineRectangle.Right, lineRectangle.Bottom); 511paintArgs.Graphics.DrawLine(SystemPens.ControlLightLight, lineRectangle.Left, lineRectangle.Bottom + 1, lineRectangle.Right, lineRectangle.Bottom + 1); 515paintArgs.Graphics.DrawLine(SystemPens.ControlDark, lineRectangle.Left, lineRectangle.Bottom, lineRectangle.Right, lineRectangle.Bottom); 516paintArgs.Graphics.DrawLine(SystemPens.ControlLightLight, lineRectangle.Left, lineRectangle.Bottom + 1, lineRectangle.Right, lineRectangle.Bottom + 1);
AuthoringOM\Design\FreeFormDesigner.cs (8)
826size.Height += Math.Max(childRectangle.Bottom - bounds.Bottom, 0); 938bounds.Height = Math.Max(minRectangle.Bottom - bounds.Top, e.Bounds.Bottom - bounds.Top); 1119rightBottom.Y = (rightBottom.Y < activityDesigner.Bounds.Bottom) ? activityDesigner.Bounds.Bottom : rightBottom.Y; 1132rightBottom.Y = (rightBottom.Y < connector.Bounds.Bottom) ? connector.Bounds.Bottom : rightBottom.Y;
AuthoringOM\Design\Glyphs\ConfigErrorGlyph.cs (1)
115Point location = designer.ParentView.LogicalPointToScreen(new Point(bounds.Left, bounds.Bottom));
AuthoringOM\Design\Glyphs\SelectionGlyph.cs (3)
59grabHandles[4] = new Rectangle(selectionRect.Right - grabHandleSize.Width, selectionRect.Bottom - grabHandleSize.Height, grabHandleSize.Width, grabHandleSize.Height); 60grabHandles[5] = new Rectangle(new Point(selectionRect.Left + (selectionRect.Width - grabHandleSize.Width) / 2, selectionRect.Bottom - grabHandleSize.Height), grabHandleSize); 61grabHandles[6] = new Rectangle(selectionRect.Left, selectionRect.Bottom - grabHandleSize.Height, grabHandleSize.Width, grabHandleSize.Height);
AuthoringOM\Design\MessageFilters\AutoScrollExpandMessageFilter.cs (2)
127else if (clientPoint.Y >= clientRectangle.Bottom - clientRectangle.Height / 10 && vScrollBar.Value < vScrollBar.Maximum - vScrollBar.LargeChange) 176scrollIndicatorRectangles[3].Y = clientRectangle.Bottom - indicatorMargins.Height - scrollIndicatorSize.Height;
AuthoringOM\Design\MessageFilters\ResizingMessageFilter.cs (5)
195if (Math.Floor(DesignerGeometryHelper.DistanceFromPointToLineSegment(point, new Point[] { new Point(designerBounds.Left, designerBounds.Top), new Point(designerBounds.Left, designerBounds.Bottom) })) <= selectionSize.Width + 1) 199if (Math.Floor(DesignerGeometryHelper.DistanceFromPointToLineSegment(point, new Point[] { new Point(designerBounds.Right, designerBounds.Top), new Point(designerBounds.Right, designerBounds.Bottom) })) <= selectionSize.Width + 1) 201if (Math.Floor(DesignerGeometryHelper.DistanceFromPointToLineSegment(point, new Point[] { new Point(designerBounds.Left, designerBounds.Bottom), new Point(designerBounds.Right, designerBounds.Bottom) })) <= selectionSize.Height + 1) 311designerBounds.Height += (point.Y - designerBounds.Bottom);
AuthoringOM\Design\ParallelActivityDesigner.cs (13)
311dropTargets[0].Location = new Point(Location.X + (Size.Width - ((designerTheme != null) ? designerTheme.ConnectorSize.Width : 0)) / 2, TextRectangle.Bottom); 366parallelLinks[0].Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height * 3 / 4; 368parallelLinks[1].Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height * 3 / 4; 373parallelLinks[0].Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height * 3 / 4; 375parallelLinks[1].Y = bounds.Bottom; 395connectingLine[1].Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height * 3 / 4; 419heightDelta += bounds.Bottom - dropTargetRectangle.Bottom; 424DrawConnectors(e.Graphics, e.AmbientTheme.DropIndicatorPen, new Point[] { new Point(dropTargetRectangle.Left + dropTargetRectangle.Width / 2, dropTargetRectangle.Top + 2), new Point(dropTargetRectangle.Left + dropTargetRectangle.Width / 2, dropTargetRectangle.Bottom - 2) }, compositeDesignerTheme.ConnectorStartCap, compositeDesignerTheme.ConnectorEndCap); 440connectorPoints[0].Y = dropTargetRectangle.Bottom; 441connectorPoints[1].Y = dropTargetRectangle.Bottom; 456connectorPoints[0].Y = dropTargetRectangle.Bottom; 457connectorPoints[1].Y = dropTargetRectangle.Bottom;
AuthoringOM\Design\SequentialActivityDesigner.cs (6)
209connections.Add(new Point(startDesignerBounds.Left + startDesignerBounds.Width / 2, startDesignerBounds.Bottom)); 239connections.Add(new Point(endDesignerBounds.Left + endDesignerBounds.Width / 2, endDesignerBounds.Bottom)); 412DrawConnectors(e.Graphics, compositeDesignerTheme.ForegroundPen, new Point[] { new Point(connectors[0].X + connectors[0].Width / 2, helpTextRectangle.Bottom + 2), new Point(connectors[0].X + connectors[0].Width / 2, connectors[0].Bottom - 2) }, LineAnchor.None, compositeDesignerTheme.ConnectorEndCap); 425DrawConnectors(e.Graphics, pen, new Point[] { new Point(connectors[i].Left + connectors[i].Width / 2, connectors[i].Top + 2), new Point(connectors[i].Left + connectors[i].Width / 2, connectors[i].Bottom - 2) }, startCap, endCap); 568grabHandles[1] = new Rectangle(bounds.X + bounds.Width / 2 - ambientTheme.SelectionSize.Width / 2, bounds.Bottom - ambientTheme.SelectionSize.Height, ambientTheme.SelectionSize.Width, ambientTheme.SelectionSize.Height);
AuthoringOM\Design\SequentialWorkflowHeaderFooter.cs (3)
120bounds.Y = (this.isHeader) ? designerBounds.Top : designerBounds.Bottom - bounds.Height; 141bounds.Y = (this.isHeader) ? designerBounds.Top + margin.Height : designerBounds.Bottom - margin.Height - this.textSize.Height; 173bounds.Y = designerBounds.Bottom - margin.Height;
AuthoringOM\Design\SequentialWorkflowRootDesigner.cs (3)
370imageRectangle.Y = HeaderBarRectangle.Bottom + WorkflowTheme.CurrentTheme.AmbientTheme.Margin.Height; 389e.Graphics.DrawLine(e.DesignerTheme.BorderPen, rectangle.Left, rectangle.Bottom, rectangle.Right, rectangle.Bottom);
AuthoringOM\Design\WorkflowPrinting.cs (1)
298layoutRectangle.Y = headerFooterPrintData.PageBounds.Bottom - headerFooterPrintData.HeaderFooterMargins.Bottom - layoutRectangle.Size.Height;
AuthoringOM\Design\WorkflowView.cs (4)
1739if (!clientRectangle.Contains(rect.Location) || !clientRectangle.Contains(new Point(rect.Right, rect.Bottom))) 1752if (!clientRectangle.Contains(new Point(clientRectangle.Left, rect.Top)) || !clientRectangle.Contains(new Point(clientRectangle.Left, rect.Bottom))) 1757scrollDelta.Height = rect.Bottom - clientRectangle.Bottom;
System.WorkflowServices (4)
System\Workflow\Activities\Design\GradientPanel.cs (2)
91Brush frameBrush = new LinearGradientBrush(new Point(frameRect.Left, frameRect.Top), new Point(frameRect.Left, frameRect.Bottom), BaseColor, LightingColor); 136arc.Y = frame.Bottom - diameter;
System\Workflow\ComponentModel\Design\HighlightOverlayGlyph.cs (2)
50Brush frameBrush = new LinearGradientBrush(new Point(frameRect.Left, frameRect.Top), new Point(frameRect.Left, frameRect.Bottom), BaseColor, LightingColor); 92arc.Y = frame.Bottom - diameter;