3 writes to ActiveLayout
System.Workflow.ComponentModel (3)
AuthoringOM\Design\WorkflowView.cs (3)
197ActiveLayout = DefaultLayout = new WorkflowRootLayout(this.serviceProvider); 404ActiveLayout = DefaultLayout = this.rootDesigner.SupportedLayout; 499ActiveLayout = (value) ? ((WorkflowPrintDocument)PrintDocument).PrintPreviewLayout : DefaultLayout;
9 references to ActiveLayout
System.Workflow.ComponentModel (9)
AuthoringOM\Design\CommandSet.cs (3)
289int newZoom = (int)(100.0f / this.workflowView.ActiveLayout.Scaling * Math.Min((float)this.workflowView.ViewPortSize.Width / (float)this.workflowView.ActiveLayout.Extent.Width, (float)this.workflowView.ViewPortSize.Height / (float)this.workflowView.ActiveLayout.Extent.Height));
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (1)
1216Size maxExtent = ActiveLayout.Extent;
AuthoringOM\Design\MessageFilters\DragDropManager.cs (1)
758return ((float)parentView.Zoom / 100.0f * parentView.ActiveLayout.Scaling);
AuthoringOM\Design\WorkflowView.cs (4)
945int newZoom = (int)(100.0f / ActiveLayout.Scaling * Math.Min((float)ViewPortSize.Width / (float)ActiveLayout.Extent.Width, (float)ViewPortSize.Height / (float)ActiveLayout.Extent.Height)); 1568workflowView.ActiveLayout.OnPaint(eventArgs, viewPortData);