Sample Visual Basic
Code to convert an RTF document to HTML:
In this sample all of the
properties of the control are used.
Where rtf2html1 is an instance of
an RTF-2-HTML control and rtf1 is an instance of an MS RichText
control.
rtf2html1.HTML_Colour =
"white"
rtf2html1.HTML_Title = "my title"
rtf2html1.RTF_Text = rtf1.TextRTF
rtf2html1.Generator = "My Own RTF-2-HTML Convertor"
rtf2html1.CleanRTF = "yes"
rtf2html1.CleanHTML = "no"
rtf2html1.XHTMLOutput = "no"
rtf2html1.Links = "yes"
rtf2html1.DoDebug = "yes"
rtf2html1.ConvertImages = "yes"
rtf2html1.ImageFolder = "c:\"
rtf2html1.ImageFormat = "jpg"
rtf2.Text = rtf2html1.ConvertRTFPlain
|