AODL.Document.SpreadsheetDocuments.SpreadsheetDocument.SaveTo C# (CSharp) Метод

SaveTo() публичный Метод

Save the SpreadsheetDocument as OpenDocument spreadsheet document
public SaveTo ( string filename ) : void
filename string The filename. With or without full path. Without will save the file to application path!
Результат void
		public void SaveTo(string filename)
		{
			this.CreateContentBody();

			//Call the ExportHandler for the first matching IExporter
			ExportHandler exportHandler		= new ExportHandler();
			IExporter iExporter				= exportHandler.GetFirstExporter(
				DocumentTypes.SpreadsheetDocument, filename);
			iExporter.Export(this, filename);
		}

Same methods

SpreadsheetDocument::SaveTo ( string filename, IExporter iExporter ) : void

Usage Example

Пример #1
0
 void Example1()
 {
     //Create new spreadsheet document
     SpreadsheetDocument spreadsheetDocument = new SpreadsheetDocument();
     spreadsheetDocument.New();
     //Create a new table
     Table table = new Table(spreadsheetDocument, "First", "tablefirst");
     //Create a new cell, without any extra styles
     Cell cell = table.CreateCell();
     //Add a paragraph to this cell
     Paragraph paragraph = ParagraphBuilder.CreateSpreadsheetParagraph(spreadsheetDocument);
     //Create some Formated text
     FormatedText fText = new FormatedText(spreadsheetDocument, "T1", "Some Text");
     //fText.TextStyle.TextProperties.Bold = "bold";
     fText.TextStyle.TextProperties.Underline = LineStyles.dotted;
     //Add formated text
     paragraph.TextContent.Add(fText);
     //Add paragraph to the cell
     cell.Content.Add(paragraph);
     //Insert the cell at row index 2 and column index 3
     //All need rows, columns and cells below the given
     //indexes will be build automatically.
     table.InsertCellAt(2, 3, cell);
     //Insert table into the spreadsheet document
     spreadsheetDocument.TableCollection.Add(table);
     spreadsheetDocument.SaveTo("example1_formated.ods");
 }
All Usage Examples Of AODL.Document.SpreadsheetDocuments.SpreadsheetDocument::SaveTo