9539b6435b8cbfcb981c9fc018a0b8b2cca48a7b
Guides/LayeredSubtotaling.md
| ... | ... | @@ -16,7 +16,9 @@ In this example, the data would be aggregated based on [ShipCountry] normally. T |
| 16 | 16 | |
| 17 | 17 | Here is a sample global.asax to implement layered subtotaling in your own application. This example behavior modifies the "Line Delimited With Labels" option in the Style tab of the Report Designer. However, you can customize which of the visual grouping styles this behavior modifies, if any, by modifying the following line: |
| 18 | 18 | |
| 19 | -``isTargetVGStyle = AdHocContext.CurrentReportSet.VisualGroupStyle == VisualGroupStyle.LineDelimitedWithLabels;`` |
|
| 19 | +``` |
|
| 20 | +isTargetVGStyle = AdHocContext.CurrentReportSet.VisualGroupStyle == VisualGroupStyle.LineDelimitedWithLabels; |
|
| 21 | +``` |
|
| 20 | 22 | |
| 21 | 23 | ```csharp |
| 22 | 24 | /// <summary> |