ScrollViewer.MinZoomFactor Property

Definition

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.

Applies to