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