[]
Specifies the custom font resolver for all situations.
public ReportViewerConfiguration UseFontResolver(IFontResolver fontResolver)
| Type | Name | Description |
|---|---|---|
| IFontResolver | fontResolver | A IFontResolver object representing the custom font resolver. |
| Type | Description |
|---|---|
| ReportViewerConfiguration | The current ReportViewerConfiguration instance. |
app.UseReportViewer(config =>
{
// Your implementation of IFontResolver.
config.UseFontResolver(fontResolver);
});