1 write to margin
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerWidgets.cs (1)
589this.margin = margin;
12 references to margin
System.Workflow.ComponentModel (12)
AuthoringOM\Design\DesignerWidgets.cs (12)
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); 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); 841int totalStripSize = this.bounds.Width - this.margin.Width; 842visibleItemCount = totalStripSize / Math.Max((this.itemSize.Width + this.margin.Width), 1); 846int totalStripSize = this.bounds.Height - this.margin.Height; 847visibleItemCount = totalStripSize / Math.Max((this.itemSize.Height + this.margin.Height), 1);