Table of Contents

Title option

Overview

Available only for ShowReportOptions.

The Title option allows you to change the tab title of the Viewer.

The Title option also allows you to open many viewers based on the same report but with different configurations.

How to use?

Assign the title My Custom Title to the viewer tab :

var options = new ShowReportOptions("MyReport")
    .WithTitle("My Custom Title");

await this.ShowReportAsync(options);