com.aspose.words
Class SaveOutputParameters

java.lang.Object
    extended by com.aspose.words.SaveOutputParameters

public class SaveOutputParameters 
extends java.lang.Object

This object is returned to the caller after a document is saved and contains additional information that has been generated or calculated during the save operation. The caller can use or ignore this object.

Example:

Shows how to verify Content-Type strings from save output parameters.
Document doc = new Document(getMyDir() + "Document.doc");

SaveOutputParameters parameters = doc.save(getArtifactsDir() + "Document.SaveOutputParameters.doc");
Assert.assertEquals(parameters.getContentType(), "application/msword");

parameters = doc.save(getArtifactsDir() + "Document.SaveOutputParameters.pdf");
Assert.assertEquals(parameters.getContentType(), "application/pdf");

Property Getters/Setters Summary
java.lang.StringgetContentType()
           Returns the Content-Type string (Internet Media Type) that identifies the type of the saved document.
 

Property Getters/Setters Detail

getContentType

public java.lang.String getContentType()
Returns the Content-Type string (Internet Media Type) that identifies the type of the saved document.

Example:

Shows how to verify Content-Type strings from save output parameters.
Document doc = new Document(getMyDir() + "Document.doc");

SaveOutputParameters parameters = doc.save(getArtifactsDir() + "Document.SaveOutputParameters.doc");
Assert.assertEquals(parameters.getContentType(), "application/msword");

parameters = doc.save(getArtifactsDir() + "Document.SaveOutputParameters.pdf");
Assert.assertEquals(parameters.getContentType(), "application/pdf");

See Also:
          Aspose.Words Documentation - the home page for the Aspose.Words Product Documentation.
          Aspose.Words Support Forum - our preferred method of support.