Converts HTML, XHTML, ASPX string to RTF or Text string. This method can be used together with the RTF-to-HTML DLL .Net to convert RTF -> HTML -> RTF with images in memory.

Namespace:  SautinSoft
Assembly:  SautinSoft.HtmlToRtf (in SautinSoft.HtmlToRtf.dll) Version: 4.1.7.15

Syntax

      
 C#  Visual Basic 
public string ConvertString(
	string htmlString,
	ArrayList ImageList
)
Public Function ConvertString ( _
	htmlString As String, _
	ImageList As ArrayList _
) As String

Parameters

htmlString
String
Any string in HTML format, even piece of HTML code
ImageList
ArrayList
ArrayList which contains images as SautinImage objects

Return Value

String with RTF or Text document, depends of OutputFormat
null - in case of converting failed

See Also