2 overrides of Scaling
System.Workflow.ComponentModel (2)
AuthoringOM\Design\WorkflowLayouts.cs (2)
73public override float Scaling 358public override float Scaling
4 references to Scaling
System.Workflow.ComponentModel (4)
AuthoringOM\Design\CommandSet.cs (1)
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\MessageFilters\DragDropManager.cs (1)
758return ((float)parentView.Zoom / 100.0f * parentView.ActiveLayout.Scaling);
AuthoringOM\Design\WorkflowView.cs (2)
750return (this.zoomLevel * this.activeLayout.Scaling); 945int newZoom = (int)(100.0f / ActiveLayout.Scaling * Math.Min((float)ViewPortSize.Width / (float)ActiveLayout.Extent.Width, (float)ViewPortSize.Height / (float)ActiveLayout.Extent.Height));