Search found 4 matches

by box712
Mon Apr 27, 2009 4:14 pm
Forum: Support
Topic: LeftIndent and LoadHtml issue
Replies: 5
Views: 13294

Thanks a lot,
SaveHTMLEx method without rvsoInlineCSS option
working fine.

Also I was able to install HtmlViewImporter and it works in both cases - with and without rvsoInlineCSS option.

Looks like the Issue is resolved.
Thanks again.
by box712
Mon Apr 27, 2009 3:00 pm
Forum: Support
Topic: LeftIndent and LoadHtml issue
Replies: 5
Views: 13294

Still not working

Unfortunately RvHtmlImporter.LoadHtml still not working. Left Indent (Bold, Italik Font styles as well) are ignored by the HtmlImporter
There is an example of HTML which I have
<p style=" text-align: left; text-indent: 0px; padding: 0px 0px 0px 0px; margin: 0px 0px 0px 20px;"><span style=" font ...
by box712
Fri Apr 24, 2009 2:24 am
Forum: Support
Topic: LeftIndent and LoadHtml issue
Replies: 5
Views: 13294

Just to have code more readable

Just to have code more readable

procedure TForm1.SpeedButton1Click(Sender: TObject);
var
vStream: TMemoryStream;
s: TRVRawByteString;
begin
vStream := TMemoryStream.Create;
try
// init some data with Left Indent = 40 first
RichViewEdit1.Clear;
RichViewEdit1.Add('Test Line', 0);
RVStyle1 ...
by box712
Thu Apr 23, 2009 6:51 pm
Forum: Support
Topic: LeftIndent and LoadHtml issue
Replies: 5
Views: 13294

LeftIndent and LoadHtml issue

Hi all,
I ‘m trying to save HTM to stream and load the same HTML from stream.
To save data I’m using SaveHTMLToStreamEx , to load -TRvHtmlImporter.LoadHtml.
LeftIndent disappeared.
When I save this HTML to file and load it with IE, Indent works fine.

Is it possible to have this working (may be ...