Class MarkupConverter
Implements the logic for the MarkupConverter class.
Implements
Inherited Members
Namespace: MarkupConverter
Assembly: Aruba.Utilities.MarkupConverter.dll
Syntax
public class MarkupConverter : IMarkupConverter
Methods
View SourceConvertHTMLtoRTF(string)
Converts a string in HTML format to RTF format.
Declaration
public string ConvertHTMLtoRTF(string htmlText)
Parameters
Type | Name | Description |
---|---|---|
string | htmlText | The string in HTML. |
Returns
Type | Description |
---|---|
string | The string in RTF. |
ConvertHtmlToXaml(string)
Converts a string in HTML format to XAML format.
Declaration
public string ConvertHtmlToXaml(string htmlText)
Parameters
Type | Name | Description |
---|---|---|
string | htmlText | The string in HTML. |
Returns
Type | Description |
---|---|
string | The string in XAML. |
ConvertRTFtoHTML(string)
Converts a string in RTF to HTML format.
Declaration
public string ConvertRTFtoHTML(string rtfText)
Parameters
Type | Name | Description |
---|---|---|
string | rtfText | The string in RTF. |
Returns
Type | Description |
---|---|
string | The string in HTML. |
ConvertXAMLtoHTML(string)
Converts a string in XAML to HTML format.
Declaration
public string ConvertXAMLtoHTML(string xamlText)
Parameters
Type | Name | Description |
---|---|---|
string | xamlText | The string in XAML. |
Returns
Type | Description |
---|---|
string | The string in HTML. |