You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: reporting-for-desktop/articles/report-designer/report-designer-for-winforms/preview-print-and-export-reports.md
+60-1Lines changed: 60 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,4 +34,63 @@ The following documents describe the basics of report exporting and format-speci
### Export a Report to PDF with Accessible Tags (PDF/UA Compatibility)
40
+
41
+
You can specify how Label, Table, Table Row, and Table Cell should be treated by screen readers in the exported PDF document.
42
+
43
+
When you export a report to PDF, the report elements have no role. Assistive software commonly treats such elements as HTML <div> tags. Change the element’s role to one of the values listed below to help the screen reader correctly identify the element’s purpose in the exported PDF document.
44
+
45
+
#### Define Label Accessible Role
46
+
47
+
Set the control’s **Accessible Role** property to **Heading 1 - Heading 6** before you export a report.
48
+
49
+

50
+
51
+
In the PDF Export Options dialog, set the **PDF/UA Compatibility** property to **PDF/UA1** to conform the exported PDF document to PDF/UA specification. Then, export the report to PDF format.
52
+
53
+
The image below shows the result. **Accessible Role** is set to **Heading 2**, and the screen reader treats **Label** as a “level two” heading in the exported document:
54
+
55
+

56
+
57
+
#### Define Table Accessible Role
58
+
59
+
You can specify how Table should be treated by screen readers in the exported PDF document. For this, set the control's **Accessible Role** property to **Table** before you export a report.
60
+
61
+

62
+
63
+
In the PDF Export Options dialog, set the **PDF/UA Compatibility** property to **PDF/UA1** to conform the exported PDF document to PDF/UA specification. Then, export the report to PDF format.
64
+
65
+
The image below shows the result. **Accessible Role** is set to **Table**, and the screen reader treats Table as a table in the exported document:
66
+
67
+

68
+
69
+
#### Define Table Row Accessible Role
70
+
71
+
You can specify how Table Row should be treated by screen readers in the exported PDF document.
72
+
73
+
Before you export a report, set the **Table**'s **Accessible Role** property to **Table** to define a control as a table. Then, specify **Table Row**'s **Accessible Role**:
74
+
75
+

76
+
77
+
In the PDF Export Options dialog, set the **PDF/UA Compatibility** property to **PDF/UA1** to conform the exported PDF document to PDF/UA specification. Then, export the report to PDF format.
78
+
79
+
The image below shows the result. **Table Row**'s **Accessible Role** is set to **Table Header Row**, and the screen reader treats **Table Row** as a header row of the table in the exported document:
80
+
81
+

82
+
83
+
#### Define Table Cell Accessible Role
84
+
85
+
Before you export a report, set the **Table**'s **Accessible Role** property to **Table** to define a control as a table. Then, specify the **Table Cell**'s **Accessible Role** property:
86
+
87
+

88
+
89
+
> [!NOTE]
90
+
> **Accessible Role** is not in effect for cells merged with the Cell's **Row Span** property.
91
+
92
+
In the PDF Export Options dialog, set the **PDF/UA Compatibility** property to **PDF/UA1** to conform the exported PDF document to PDF/UA specification. Then, export the report to PDF format.
93
+
94
+
The image below shows the result. **Table Cell**'s b is set to **Table Header Cell**, and the screen reader treats Table Cell with "Bill to:" text as a header cell in the exported document:
95
+
96
+

Copy file name to clipboardExpand all lines: reporting-for-desktop/articles/report-designer/report-designer-for-winforms/shape-report-data/calculate-summaries.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,3 +9,4 @@ Topics in this section describe how to calculate summaries in a report.
9
9
*[Calculate a Summary](calculate-summaries/calculate-a-summary.md)
10
10
*[Calculate a Weighted Average](calculate-summaries/calculate-a-weighted-average.md)
11
11
*[Calculate an Advanced Summary](calculate-summaries/calculate-an-advanced-summary.md)
Carried Forward/Brought Forward summaries refer to the practice of automatically transferring specific values or calculations from one reporting period or data group to another (eliminating the need for manual data entry or redundant calculations).
10
+
11
+
As the following image illustrates, calculated running summaries are transferred from the report’s page footer to the header of the next page. Values are calculated for the group and are specified by the user. It can involve grouping by monthly expenses, or grouping by month with the cumulative balance of total expenses.
In Reporting controls, Carried Forward/Brought Forward summaries are represented by the `sumCarryoverSum(Expression)`. function.
16
+
17
+
## Example: How to Display Transactions for a User Account
18
+
19
+
The example shows how to display transactions for a user account. These transactions represent expenses for one month. Records span multiple pages and the summary displayed in the footer of the first page is repeated in the header of the subsequent page.
20
+
21
+
1. Place the `Label` controls in group header/group footer bands. Enable group header/group footer bands’ **Repeat Every Page** option.
Copy file name to clipboardExpand all lines: reporting-for-desktop/articles/report-designer/report-designer-for-winforms/shape-report-data/specify-conditions-for-report-elements.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,3 +12,4 @@ Topics in this section demonstrate how to conditionally change report data and e
0 commit comments