RichViewSavePInHTML, RichViewSaveDivInHTMLEx, RichViewSavePageBreaksInText Global Variables

<< Click to display table of contents >>

RichViewSavePInHTML, RichViewSaveDivInHTMLEx, RichViewSavePageBreaksInText Global Variables

Unit [VCL/FMX]: CRVData / fmxCRVData;

Syntax

var

  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 when HTMLSaveProperties.HTMLSavingType = rvhtmlstSimplified. This variable does not affect saving when HTMLSaveProperties.HTMLSavingType = rvhtmlstNormal. This setting changes appearance of resulting HTML documents (usually browsers add additional spacing between <p>).

Set RichViewSaveDivInHTMLEx to True is you want SaveHTML to write <div> instead of <p> in HTML when HTMLSaveProperties.HTMLSavingType = rvhtmlstNormal. This variable does not affect saving when HTMLSaveProperties.HTMLSavingType = rvhtmlstSimplified. 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.