| | HTMLConversion | |
rtPublicSession ConsoleOutput CRLF CSS_DEFAULT defaultAttachmentImage disableConsoleOutput DocumentContext HideWhenStatus HTMLConversion HTMLListMarkerType HTMLListMarkerURL PageWidth URLCommandMarker URLFormat versionInfo | version 1.5
Property Set/Get HTMLConversion (parmName As String) HTMLConversion allows to define settings that controle conversion to HTML. rtLibSession.HTMLConversion ("parmname") = "parmvalue" to remove it (or set it to be False) use rtLibSession.HTMLConversion ("parmname") = ""
Normally default settings should work fine, but if necessary you can use them to finetune default conversion. Currently two flags are available: HTML_CONVERSION_IGNORE_MARGIN, HTML_CONVERSION_USE_ZERO_MARGIN The first disables an any attempt to set left margin different from its value in Notes and the second defines that we should interpret left margin as zero if it is equal or less PageLeftMargin value (one inch by default). In order to remove the value use an empty string. For example: ' do not convert any margins rtLibSession.HTMLConversion (HTML_CONVERSION_IGNORE_MARGIN) = True
' use left margin's value as is -- default value in Notes will translate in one inch margin on Web. rtLibSession.HTMLConversion (HTML_CONVERSION_USE_ZERO_MARGIN) = "" | |