ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Aspnet.Designer Assembly / GrapeCity.ActiveReports.Web.Designer Namespace / ReportDesignerConfiguration Class / UseConfig Method
The path to the configuration file.
Example

In This Topic
    UseConfig Method (ReportDesignerConfiguration)
    In This Topic
    Specifies the path to the ActiveReports.config or GrapeCity.ActiveReports.config file.
    Syntax
    'Declaration
     
    Public Function UseConfig( _
       ByVal path As String _
    ) As ReportDesignerConfiguration
    public ReportDesignerConfiguration UseConfig( 
       string path
    )

    Parameters

    path
    The path to the configuration file.

    Return Value

    The current ReportDesignerConfiguration instance.
    Example
    app.UseReportDesigner(config =>
    {
    	config.UseConfig("/path/to/ActiveReports.config");
    });
    See Also