© Copyright SautinSoft 2002 - 2008
(2.3.0 - July 16th, 2008)

Manual for RTF-to-HTML DLL
- .Net component to convert Text, RTF strings (files) to HTML, XHTML strings (files).
     about | methods and properties | code samples | rtf samples | faq | order and pricing | license | support and contacts

FAQ

Text formating

How to make all text by one font?
Does your component allow to get HTML only between <body>...</body> tags?
How to specify name for CSS styles?
Tables and Images
I need the GIF format for output images. How to change it?
I want to make all table borders visible, is it possible?
Another thing is converting Images into an Memory-array. Do you have any sample code of how to do that in VB?
Payment and delivery
Which payment types do you accept?
When I'll get the component and my registration data?

How to make all text by one font?

To make all text by single font, use the property 'TextStyle.FontFace'. This is C# example:
r.TextStyle.FontFace = "Verdana";
And all text will be by Verdana.

Does your component allow to get HTML only between <body>...</body> tags?

Yes, it does. To get HTML only between <body>...</body> tags specify:
r.HtmlParts = SautinSoft.RtfToHtml.eHtmlParts.Html_body;

How to specify name for CSS styles?

It's very easy. Use the property 'StyleName'.

I need the GIF format for output images. How to change it?

You can select any format between GIF, PNG and JPG for output images. To select image type use the property 'ImagesFormat'.

I want to make all table borders visible, is it possible?

Yes, you make borders visible independently which borders are inside RTF file. To specify borders use the property 'BorderType'.

Another thing is converting Images into an Memory-array. Do you have any sample code of how to do that in VB?

The RTF-to-HTML DLL .Net supports converting with images and storing output images into memory array.
We have two versions of method ConvertString(). One of them can store output images into memory. This is sample in VB.Net:

Dim r As New SautinSoft.RtfToHtml.Converter
Dim myImages As New ArrayList
Dim htmlString As New String("")
Dim rtfString As New String("")
rtfString = "{\rtf\b bold text\b0}"
myImages.Add(New SautinImage("image1", Nothing))
htmlString = r.ConvertString(rtfString, myImages)

After converting the array list "myImages" will be filled by images from "rtfString".

Which payment types do you accept?

We are using ShareIt - well known paying service provider that allows to order securely online with a credit card (Visa, MasterCard, American Express, Discover/Novus, Eurocard, Eurocheques), wire transfer, PayPal or by phone, by fax or whatever you desire, even old post mail orders with bank check. All licenses has 30 day money back guarantee.

When I'll get the component and my registration data?

I'll get the full version of the RTF-to-HTML DLL .Net and your registration data automatically by email during 1-2 minutes after processing your order. If you will pay by credit card or PayPal all order process and getting software takes a few minutes. If you have any questions let us know at sales@sautinsoft.com.

 

Copyright © 2002-2008, SautinSoft. All rights reserved.