Search found 2 matches

by martindk
Fri Apr 28, 2006 7:22 pm
Forum: Support
Topic: TRvHTMLImporter and Style Attributes
Replies: 0
Views: 14148

TRvHTMLImporter and Style Attributes

There is a bug in TRvHTMLImporter's parsing of stylesheet attributes. This causes a search for the 'color' attribute to match the 'background-color' attribute and return its value. The following code fixes the problem: function StyleValue(StyleParam, StyleType: string): string; var RetVal: string ...
by martindk
Thu Apr 27, 2006 2:16 pm
Forum: Support
Topic: RVHTMLImporter and Strikeout Font Attribute
Replies: 1
Views: 9871

RVHTMLImporter and Strikeout Font Attribute

The LoadHTML method of the RVHTMLImporter class has a bug in its implementation of the strikeout font attribute. In addtion, RichView exports this attribute with the <s> tag, not the <strike> tag. Finally, both tags have been deprecated in favor of the <del> tag. So, I made the following ...