ScrollViewer.MinZoomFactor Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates the minimum permitted run-time value of ZoomFactor.
public:
property float MinZoomFactor { float get(); void set(float value); };
float MinZoomFactor();
void MinZoomFactor(float value);
public float MinZoomFactor { get; set; }
var single = scrollViewer.minZoomFactor;
scrollViewer.minZoomFactor = single;
Public Property MinZoomFactor As Single
<ScrollViewer MinZoomFactor="single" />
Property Value
Single
float
The minimum permitted run-time value of ZoomFactor. The value must be greater than or equal to 0.1. The default is 0.1.
Remarks
The value for this property must be greater than or equal to 0.1; otherwise, an exception is thrown.