FAQ/DeleteReportSet.md
... ...
@@ -2,11 +2,17 @@
2 2
3 3
[[_TOC_]]
4 4
5
-##About
5
+##Preface
6 6
7
-The DeleteReportSet method is used to delete reports from your storage system. This method can be overridden in your [[CustomAdHocConfig|http://wiki.izenda.us/Integration/Tutorials/Customizing-Izenda-Settings]] class. The code samples below demonstrate method of overriding the method to implement custom functionality using both [[DatabaseAdHocConfig|http://wiki.izenda.us/FAQ/Storing-Reports#Database-Mode]] and [[FileSystemAdHocConfig|http://wiki.izenda.us/FAQ/Storing-Reports#File-System-Mode]].
7
+The DeleteReportSet method is used to delete reports from your storage system. This method can be overridden in your [[CustomAdHocConfig|http://wiki.izenda.us/Integration/Tutorials/Customizing-Izenda-Settings]] class.
8 8
9
-##DatabaseAdHocConfig Sample
9
+##Usage
10
+If you have overwritten [SaveReportSet()](http://wiki.izenda.us/FAQ/SaveReportSet) to change the location where reports are saved, it is necessary to use this override to indicate where the deletion will occur.
11
+
12
+##Examples
13
+The code samples below demonstrate method of overriding the method to implement custom functionality using both [[DatabaseAdHocConfig|http://wiki.izenda.us/FAQ/Storing-Reports#Database-Mode]] and [[FileSystemAdHocConfig|http://wiki.izenda.us/FAQ/Storing-Reports#File-System-Mode]].
14
+
15
+###DatabaseAdHocConfig Sample
10 16
11 17
```csharp
12 18
/* BEGIN Database Mode Code Sample */
... ...
@@ -26,7 +32,7 @@ public override void DeleteReportSet() {
26 32
/* END Database Mode Code Sample */
27 33
```
28 34
29
-##FileSystemAdHocConfig Sample
35
+###FileSystemAdHocConfig Sample
30 36
31 37
```csharp
32 38
/* BEGIN Filesystem Mode Code Sample */