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