java.lang.Object
com.aspose.words.CssSavingArgs
public class CssSavingArgs
By default, when Aspose.Words saves a document to HTML, it saves CSS information inline
(as a value of the style attribute on every element).
To save CSS into stream, use the To suppress saving CSS into a file and embedding to HTML document use the
| Property Getters/Setters Summary | ||
|---|---|---|
java.io.OutputStream | getCssStream() | |
void | setCssStream(java.io.OutputStream value) | |
| Allows to specify the stream where the CSS information will be saved to. | ||
Document | getDocument() | |
| Gets the document object that is currently being saved. | ||
boolean | isExportNeeded() | |
void | isExportNeeded(boolean value) | |
Allows to specify whether the CSS will be exported to file and embedded to HTML document. Default is true.
When this property is false, the CSS information will not be saved to a CSS file and will not be embedded to HTML document.
|
||
boolean | getKeepCssStreamOpen() | |
void | setKeepCssStreamOpen(boolean value) | |
| Specifies whether Aspose.Words should keep the stream open or close it after saving an CSS information. | ||
| Property Getters/Setters Detail |
|---|
getCssStream/setCssStream | |
public java.io.OutputStream getCssStream() / public void setCssStream(java.io.OutputStream value) | |
This property allows you to save CSS information to a stream.
The default value is null. This property doesn't suppress saving CSS information to a file or
embedding to HTML document. To suppress exporting CSS use the
Using
getDocument | |
public Document getDocument() | |
isExportNeeded/isExportNeeded | |
public boolean isExportNeeded() / public void isExportNeeded(boolean value) | |
true.
When this property is false, the CSS information will not be saved to a CSS file and will not be embedded to HTML document.
getKeepCssStreamOpen/setKeepCssStreamOpen | |
public boolean getKeepCssStreamOpen() / public void setKeepCssStreamOpen(boolean value) | |
Default is false and Aspose.Words will close the stream you provided
in the true to keep the stream open.