1 write to workingRectangle
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerWidgets.cs (1)
1096this.workingRectangle = closestScreen.WorkingArea;
8 references to workingRectangle
System.Workflow.ComponentModel (8)
AuthoringOM\Design\DesignerWidgets.cs (8)
1307if (this.workingRectangle.Top > bounds.Top) 1308fittingOffset.Height += this.workingRectangle.Top - bounds.Top; 1309else if (this.workingRectangle.Bottom < bounds.Bottom) 1310fittingOffset.Height -= bounds.Bottom - this.workingRectangle.Bottom; 1312if (this.workingRectangle.Left > bounds.Left) 1313fittingOffset.Width += this.workingRectangle.Left - bounds.Left; 1314else if (this.workingRectangle.Right < bounds.Right) 1315fittingOffset.Width -= bounds.Right - this.workingRectangle.Right;