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