14 references to bounds
System.Workflow.ComponentModel (14)
AuthoringOM\Design\DesignerWidgets.cs (14)
633return this.bounds.Location; 638if (this.bounds.Location != value) 641this.bounds.Location = value; 651return this.bounds.Size; 656if (this.bounds.Size != value) 659this.bounds.Size = value; 670return this.bounds; 715itemRectangle.X = bounds.Left + (itemIndex * this.itemSize.Width) + ((itemIndex + 1) * this.margin.Width); 716itemRectangle.Y = bounds.Top + this.margin.Height; 720itemRectangle.X = bounds.Left + this.margin.Width; 721itemRectangle.Y = bounds.Top + (itemIndex * this.itemSize.Height) + ((itemIndex + 1) * this.margin.Height); 841int totalStripSize = this.bounds.Width - this.margin.Width; 846int totalStripSize = this.bounds.Height - this.margin.Height; 875workflowView.InvalidateLogicalRectangle(this.bounds);