Guides/Toolbar-Buttons.md
... ...
@@ -62,3 +62,47 @@ This button allows a user to save the current report with a specific name.
62 62
63 63
```
64 64
65
+##Print Options
66
+
67
+![Print Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/print.png)
68
+
69
+Clicking the downward facing triangle next to the print icon will reveal further print options; HTML print and PDF print.
70
+
71
+```html
72
+<button type="button" class="btn" lang-title="js_Print" title="Print" onclick="responseServer.OpenUrl('rs.aspx?p=htmlreport&print=1', 'aspnetForm', '');">
73
+ <img class="icon" src="rs.aspx?image=ModernImages.print.png" alt="Printer" />
74
+ <span class="hide" lang-text="js_Print">Print</span>
75
+</button>
76
+
77
+<button type="button" class="btn dropdown-toggle" data-toggle="dropdown">
78
+ <span class="caret"></span>
79
+</button>
80
+```
81
+
82
+###HTML Print
83
+
84
+![HTML Print Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/html-print.png)
85
+
86
+This button allows for direct printing of a report from the browser.
87
+
88
+```html
89
+<li><a href="javascript:void(0)" title="" style="min-width: 18em;" onclick="responseServer.OpenUrl('rs.aspx?p=htmlreport&print=1', 'aspnetForm', '');">
90
+ <img class="icon" src="rs.aspx?image=ModernImages.print-32.png" alt="" />
91
+ <b lang-text="js_PrintHTML">Print HTML</b><br>
92
+ <span lang-text="js_PrintDirectlyMessage">Print directly from your browser, the fastest way for modern browsers</span>
93
+</a></li>
94
+```
95
+
96
+###PDF Print
97
+
98
+![PDF Print Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/pdf-print.png)
99
+
100
+This button allows for printing of a report as a PDF file.
101
+
102
+```html
103
+<li><a href="javascript:void(0)" title="" style="min-width: 18em;" onclick="responseServer.OpenUrl('rs.aspx?p=htmlreport&print=1', 'aspnetForm', '');">
104
+ <img class="icon" src="rs.aspx?image=ModernImages.print-32.png" alt="" />
105
+ <b lang-text="js_PrintHTML">Print HTML</b><br>
106
+ <span lang-text="js_PrintDirectlyMessage">Print directly from your browser, the fastest way for modern browsers</span>
107
+</a></li>
108
+```
... ...
\ No newline at end of file