7 references to MaxZoom
System.Workflow.ComponentModel (7)
AuthoringOM\Design\CommandSet.cs (1)
290
this.workflowView.Zoom = Math.Min(Math.Max(newZoom, AmbientTheme.MinZoom), AmbientTheme.
MaxZoom
);
AuthoringOM\Design\MessageFilters\WindowManager.cs (1)
426
newZoom = Math.Min(newZoom, AmbientTheme.
MaxZoom
);
AuthoringOM\Design\MessageFilters\ZoomingMessageFilter.cs (2)
185
parentView.Zoom = Math.Min(Math.Max(zoomLevel, AmbientTheme.MinZoom), AmbientTheme.
MaxZoom
);
199
return ((this.currentState == ZoomState.Out && parentView.Zoom > AmbientTheme.MinZoom) || (this.currentState == ZoomState.In && parentView.Zoom < AmbientTheme.
MaxZoom
));
AuthoringOM\Design\WorkflowView.cs (3)
341
if (value < AmbientTheme.MinZoom || value > AmbientTheme.
MaxZoom
)
342
throw new NotSupportedException(DR.GetString(DR.ZoomLevelException2, AmbientTheme.MinZoom, AmbientTheme.
MaxZoom
));
946
Zoom = Math.Min(Math.Max(newZoom, AmbientTheme.MinZoom), AmbientTheme.
MaxZoom
);