Set FastReport Zoom
I Use FastReport 2015.2.16 And I Use Asp.net MVC 4.I get my Report Successfully But I cant Set Zoom Of Page in Code.How Can I set Zoom
OF Page For Example 75% or Set FitWidth or Set FitPage????
I have This General Method To Set Report propertise:
OF Page For Example 75% or Set FitWidth or Set FitPage????
I have This General Method To Set Report propertise:
protected static void SetReportProperties(FastReport.Web.WebReport webReport)
        {
            webReport.Width = 600;
            webReport.Height = 600;
            webReport.ShowCsvExport = false;
            webReport.ShowDbfExport = false;
            webReport.ShowExcel2007Export = false;
            webReport.ShowMhtExport = false;
            webReport.ShowOdsExport = false;
            webReport.ShowOdtExport = false;
            webReport.ShowPowerPoint2007Export = false;
            webReport.ShowRtfExport = false;
            webReport.ShowTextExport = false;
            webReport.ShowXmlExcelExport = false;
            webReport.ShowXpsExport = false;
            webReport.ShowPreparedReport = false;
        }
Comments
FastReport.Net consists of three main components that are interconnected, working together in order to produce professional and completely manageable reports. The first one is the Demo component, which provides access to a collection of sample reports which can be further customized and used as a reference point for future projects