18 references to bounds
System.Workflow.ComponentModel (18)
AuthoringOM\Design\DesignerWidgets.cs (18)
2576
return this.
bounds
.Location;
2581
if (this.
bounds
.Location == value)
2583
this.
bounds
.Location = value;
2591
return this.
bounds
.Size;
2599
return this.
bounds
;
2659
this.
bounds
.Width = 2 * WorkflowTheme.CurrentTheme.AmbientTheme.Margin.Width;
2660
this.
bounds
.Width += (itemSize.Width * ((designerTheme != null) ? designerTheme.PreviewItemCount : 0));
2661
this.
bounds
.Width += (itemMargin.Width * (((designerTheme != null) ? designerTheme.PreviewItemCount : 0) + 1));
2662
this.
bounds
.Width += GetButtonBounds(ScrollButton.Left).Size.Width;
2663
this.
bounds
.Width += GetButtonBounds(ScrollButton.Right).Size.Width;
2664
this.
bounds
.Height = itemSize.Height + (2 * itemMargin.Height);
2832
stripRectangle.Y = this.
bounds
.Y;
2834
stripRectangle.Height = this.
bounds
.Height;
2849
int startLocation = (scrollButton == ScrollButton.Left) ? this.
bounds
.X : this.
bounds
.Right - scrollButtonSize.Width;
2852
scrollRectangle.Y = this.
bounds
.Y + this.
bounds
.Size.Height / 2 - scrollButtonSize.Height / 2;
2903
workflowView.InvalidateLogicalRectangle(this.
bounds
);