ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Web.Viewer Assembly / GrapeCity.ActiveReports.Web.Viewer Namespace / ReportViewerConfiguration Class / UseConfig Method / UseConfig(IConfigurationProvider) Method
A GrapeCity.ActiveReports.Configuration.IConfigurationProvider object representing the custom config provider.
Example

UseConfig(IConfigurationProvider) Method
Syntax
'Declaration
 
Public Overloads Function UseConfig( _
   ByVal provider As IConfigurationProvider _
) As ReportViewerConfiguration
 

Parameters

provider
A GrapeCity.ActiveReports.Configuration.IConfigurationProvider object representing the custom config provider.

Return Value

The current ReportViewerConfiguration instance.
Remarks
Important for fonts file - so customer can generate config based on see and .
Example
app.UseReportViewer(config =>
{
	// Your implementation of IConfigurationProvider.
	config.UseConfig(provider);
});
See Also