1 write to itemSize
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerWidgets.cs (1)
588this.itemSize = itemSize;
10 references to itemSize
System.Workflow.ComponentModel (10)
AuthoringOM\Design\DesignerWidgets.cs (10)
715itemRectangle.X = bounds.Left + (itemIndex * this.itemSize.Width) + ((itemIndex + 1) * this.margin.Width); 721itemRectangle.Y = bounds.Top + (itemIndex * this.itemSize.Height) + ((itemIndex + 1) * this.margin.Height); 724itemRectangle.Size = this.itemSize; 754reqdSize.Width = (this.items.Count * this.itemSize.Width) + ((this.items.Count + 1) * this.margin.Width); 755reqdSize.Height = this.itemSize.Height + 2 * this.margin.Height; 759reqdSize.Width = this.itemSize.Width + 2 * this.margin.Width; 760reqdSize.Height = (this.items.Count * this.itemSize.Height) + ((this.items.Count + 1) * this.margin.Height); 771return this.itemSize; 842visibleItemCount = totalStripSize / Math.Max((this.itemSize.Width + this.margin.Width), 1); 847visibleItemCount = totalStripSize / Math.Max((this.itemSize.Height + this.margin.Height), 1);