|
RichViewSavePInHTML, RichViewSaveDivInHTMLEx, RichViewSavePageBreaksInText Typed Constants |
Top Previous Next |
|
Unit CRVData. Syntax const RichViewSavePInHTML: Boolean = False; RichViewSaveDivInHTMLEx: Boolean = False; RichViewSavePageBreaksInText: Boolean = False; Set RichViewSavePInHTML to True is you want SaveHTML to write <p> instead of <div> in HTML. This variable does not affect SaveHTMLEx. This setting changes appearance of resulting HTML documents (usually browsers add additional spacing between <p>). Set RichViewSaveDivInHTMLEx to True is you want SaveHTMLEx to write <div> instead of <p> in HTML. This variable does not affect SaveHTML. This setting does not change appearance of resulting HTML documents (because all <p> or <div> visual attributes are defined in CSS). Set RichViewSavePageBreaksInText to True if you want to save explicit page breaks as #$0C characters. This typed constant affects all plain text export methods.
|