SaveFormat
Contenuti
[
Nascondere
]WordML2003SaveOptions.SaveFormat property
Specifica il formato in cui il documento verrà salvato se viene utilizzato questo oggetto opzioni di salvataggio. Può essereWordML .
public override SaveFormat SaveFormat { get; set; }
Esempi
Mostra come gestire il contenuto non elaborato del documento di output.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Writeln("Hello world!");
// Crea un oggetto "WordML2003SaveOptions" da passare al metodo "Save" del documento
// per modificare il modo in cui salviamo il documento nel formato di salvataggio WordML.
WordML2003SaveOptions options = new WordML2003SaveOptions();
Assert.AreEqual(SaveFormat.WordML, options.SaveFormat);
// Imposta la proprietà "PrettyFormat" su "true" per applicare il rientro dei caratteri di tabulazione e
// ritorni a capo per rendere più semplice la lettura del contenuto grezzo del documento di output.
// Imposta la proprietà "PrettyFormat" su "false" per salvare il contenuto grezzo del documento in un unico corpo di testo continuo.
options.PrettyFormat = prettyFormat;
doc.Save(ArtifactsDir + "WordML2003SaveOptions.PrettyFormat.xml", options);
string fileContents = File.ReadAllText(ArtifactsDir + "WordML2003SaveOptions.PrettyFormat.xml");
if (prettyFormat)
Assert.True(fileContents.Contains(
"<o:DocumentProperties>\r\n\t\t" +
"<o:Revision>1</o:Revision>\r\n\t\t" +
"<o:TotalTime>0</o:TotalTime>\r\n\t\t" +
"<o:Pages>1</o:Pages>\r\n\t\t" +
"<o:Words>0</o:Words>\r\n\t\t" +
"<o:Characters>0</o:Characters>\r\n\t\t" +
"<o:Lines>1</o:Lines>\r\n\t\t" +
"<o:Paragraphs>1</o:Paragraphs>\r\n\t\t" +
"<o:CharactersWithSpaces>0</o:CharactersWithSpaces>\r\n\t\t" +
"<o:Version>11.5606</o:Version>\r\n\t" +
"</o:DocumentProperties>"));
else
Assert.True(fileContents.Contains(
"<o:DocumentProperties><o:Revision>1</o:Revision><o:TotalTime>0</o:TotalTime><o:Pages>1</o:Pages>" +
"<o:Words>0</o:Words><o:Characters>0</o:Characters><o:Lines>1</o:Lines><o:Paragraphs>1</o:Paragraphs>" +
"<o:CharactersWithSpaces>0</o:CharactersWithSpaces><o:Version>11.5606</o:Version></o:DocumentProperties>"));
Guarda anche
- enum SaveFormat
- class WordML2003SaveOptions
- spazio dei nomi Aspose.Words.Saving
- assemblea Aspose.Words