Designing a report
You can use the report designer in your application. To do this, use the Design
method of Report object:
report1 = new Report();
report1.Load("report1.frx");
report1.Design();
The Design
method is overloaded:
Method | Description |
---|---|
bool Design() |
Shows the designer. |
bool Design(bool modal) |
Shows the designer. The modal parameter determines whether it is necessary to show the designer modally. |
bool Design(Form mdiParent) |
Shows the designer. The mdiParent parameter defines the main MDI window (related to WinForms/Mono). |
async Task<bool> DesignAsync() |
Shows the designer async way (related to Avalonia). |