ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / Designer Class / Zoom Property
Example

In This Topic
    Zoom Property (Designer)
    In This Topic
    Gets or sets the zoom value for the Designer.
    Syntax
    'Declaration
     
    Public Property Zoom As Single
    public float Zoom {get; set;}

    Property Value

    A System.Single representing the zoom level. Valid values range from 0.5 (50%) to 4.0 (400%).
    Exceptions
    ExceptionDescription
    Thrown if the set value is outside the allowable range of 0.5 to 4.0.
    Remarks
    Values can range from >= 1.0f to <= 8.0f.
    Example
    private void ResetZoom_Click(object sender, EventArgs e)
    {
    	designer.Zoom = 1;
    }
    See Also