Gets or sets the minimum allowed zoom factor.

Namespace:  C1.Win.C1Preview
Assembly:  C1.Win.C1Report.2 (in C1.Win.C1Report.2.dll)

Syntax

C#
[DefaultValueAttribute()]
public double MinZoomFactor { get; set; }
Visual Basic
<DefaultValueAttribute()> _
Public Property MinZoomFactor As Double
	Get
	Set

Remarks

The default value for this property is 0.05.

Examples

The following example sets the MinZoomFactor to 50%:

Copy CodeVisual Basic
Me.C1PrintPreviewControl1.PreviewPane.MinZoomFactor = 0.5
Copy CodeC#
this.c1PrintPreviewControl1.PreviewPane.MinZoomFactor = 0.5;

See Also