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