Table of Contents

THtmlFixes Structure

Defines special fixes to the generated files to workaround browser bugs.

Syntax

Namespace: FlexCel.Core

public struct THtmlFixes

Methods

Name Description
Equals True if both objects are equal.
GetHashCode Hash code for the struct.

Properties

Name Description
IE6Transparent​PngSupport By default, Internet explorer does not support transparent PNGs. Normally this is not an issue, since Excel does not use much transparency. But if you rely on transparent images and don't want to use gif images instead of png, you can set this property to true. It will add special code to the HTML file to support transparent images in IE6.
Outlook2007Css​Support Outlook 2007 renders HTML worse than previous versions, since it switched to the Word 2007 rendering engine instead of Internet Explorer to show HTML emails. If you apply this fix, some code will be added to the generated HTML file to improve the display in Outlook 2007. Other browsers will not be affected and will still render the original file. Turn this option on if you plan to email the generated file as an HTML email or to edit them in Word 2007. Note that the pages will not validate with the w3c validator if this option is on.
WordWrapSupport Some older browsers (and Word 2007) might not support the CSS white-space tag. In this case, if a line longer than a cell cannot be expanded to the right (because there is data in the next cell) it will wrap down instead of being cropped. This fix will cut the text on this cell to the displayable characters. If a letter was displayed by the half on the right, after applying this fix it will not display.
This fix is automatically applied when Outlook2007Css​Support...[more]