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