SaveAs() public method

Save to disk. Supplied file name is sanitized and converted to '.zip'
public SaveAs ( string fileName ) : void
fileName string
return void
Esempio n. 1
0
 /// <summary>
 /// Saves the document to file.
 /// <para/>Run <see cref="Build"/> first
 /// </summary>
 /// <param name="fileName"></param>
 public Templ SaveAs(string fileName)
 {
     Document.SaveAs(fileName);
     return(this);
 }