2 writes to activeLayout
System.Workflow.ComponentModel (2)
AuthoringOM\Design\WorkflowView.cs (2)
281this.activeLayout = null; 707this.activeLayout = value;
19 references to activeLayout
System.Workflow.ComponentModel (19)
AuthoringOM\Design\WorkflowView.cs (19)
196if (this.activeLayout == null || this.defaultLayout == null) 362this.rootDesigner.Location = this.activeLayout.RootDesignerAlignment; 368this.activeLayout.Update(null, WorkflowLayout.LayoutUpdateReason.ZoomChanged); 485return (this.activeLayout == ((WorkflowPrintDocument)PrintDocument).PrintPreviewLayout); 693return this.activeLayout; 708if (this.activeLayout != ((WorkflowPrintDocument)PrintDocument).PrintPreviewLayout) 709DefaultLayout = this.activeLayout; 750return (this.zoomLevel * this.activeLayout.Scaling); 1053this.activeLayout.OnPaintWorkflow(e, viewPortData); 1293this.activeLayout.Update(graphics, WorkflowLayout.LayoutUpdateReason.LayoutChanged); 1296this.rootDesigner.Location = this.activeLayout.RootDesignerAlignment; 1797Size maximumScrollSize = LogicalSizeToClient(this.activeLayout.Extent); 2075Debug.Assert(this.activeLayout != null, "active layout should not be null"); 2076Rectangle clientViewPort = (this.activeLayout != null) ? this.activeLayout.MapOutRectangleFromLayout(rectangle) : rectangle; 2089return this.activeLayout.MapInRectangleToLayout(scaledLogicalViewPort); 2095return this.activeLayout.IsCoOrdInLayout(logicalPoint); 2106point = this.activeLayout.MapOutCoOrdFromLayout(point); 2139return this.activeLayout.MapInCoOrdToLayout(points[0]);