/// <summary> /// Saves the grid to a PDF stream. /// </summary> /// <param name="stream">Stream where the file is to be saved.</param> /// <param name="options"><see cref="PdfExportOptions"/> class with parameters /// that customize the PDF output.</param> public void SavePdf(Stream stream, PdfExportOptions options) { GridExport.SavePdf(this, stream, options); }
//-------------------------------------------------------------------- //-------------------------------------------------------------------- //-------------------------------------------------------------------- //--------------------------------------------------------------------------- //-------------------------------------------------------------------- //-------------------------------------------------------------------- #if false // TODO: PDF /// <summary> /// Saves the grid to a PDF stream. /// </summary> /// <param name="stream">Stream where the file is to be saved.</param> public void SavePdf(Stream stream) { GridExport.SavePdf(this, stream); }