File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
tests/ClosedXML.Report.Tests/TestModels Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -127,12 +127,36 @@ public void SaveAs(string file)
127
127
Workbook . SaveAs ( file ) ;
128
128
}
129
129
130
+ public void SaveAs ( string file , SaveOptions options )
131
+ {
132
+ CheckIsDisposed ( ) ;
133
+ Workbook . SaveAs ( file , options ) ;
134
+ }
135
+
136
+ public void SaveAs ( string file , bool validate , bool evaluateFormulae = false )
137
+ {
138
+ CheckIsDisposed ( ) ;
139
+ Workbook . SaveAs ( file , validate , evaluateFormulae ) ;
140
+ }
141
+
130
142
public void SaveAs ( Stream stream )
131
143
{
132
144
CheckIsDisposed ( ) ;
133
145
Workbook . SaveAs ( stream ) ;
134
146
}
135
147
148
+ public void SaveAs ( Stream stream , SaveOptions options )
149
+ {
150
+ CheckIsDisposed ( ) ;
151
+ Workbook . SaveAs ( stream , options ) ;
152
+ }
153
+
154
+ public void SaveAs ( Stream stream , bool validate , bool evaluateFormulae = false )
155
+ {
156
+ CheckIsDisposed ( ) ;
157
+ Workbook . SaveAs ( stream , validate , evaluateFormulae ) ;
158
+ }
159
+
136
160
public void Dispose ( )
137
161
{
138
162
if ( IsDisposed )
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ namespace ClosedXML.Report.Tests.TestModels
14
14
{
15
15
/// <summary>
16
16
/// Database : dbdemos
17
- /// Data Source : D:\Sources\SSIV\ClosedXML.Report\tests\ClosedXML.Report.Tests\TestModels\ ..\..\DB\dbdemos.mdb
17
+ /// Data Source : ..\..\DB\dbdemos.mdb
18
18
/// Server Version : 04.00.0000
19
19
/// </summary>
20
20
public partial class DbDemos : LinqToDB . Data . DataConnection
You can’t perform that action at this time.
0 commit comments