Show / Hide Table of Contents

Interface IMarkupConverter

An interface to describe how to convert strings from one format to another.

Namespace: MarkupConverter
Assembly: Aruba.Utilities.MarkupConverter.dll
Syntax
public interface IMarkupConverter

Methods

View Source

ConvertHTMLtoRTF(string)

Converts a string in HTML format to RTF format.

Declaration
string ConvertHTMLtoRTF(string htmlText)
Parameters
Type Name Description
string htmlText

The string in HTML.

Returns
Type Description
string

The string in RTF.

View Source

ConvertHtmlToXaml(string)

Converts a string in HTML format to XAML format.

Declaration
string ConvertHtmlToXaml(string htmlText)
Parameters
Type Name Description
string htmlText

The string in HTML.

Returns
Type Description
string

The string in XAML.

View Source

ConvertRTFtoHTML(string)

Converts a string in RTF to HTML format.

Declaration
string ConvertRTFtoHTML(string rtfText)
Parameters
Type Name Description
string rtfText

The string in RTF.

Returns
Type Description
string

The string in HTML.

View Source

ConvertXAMLtoHTML(string)

Converts a string in XAML to HTML format.

Declaration
string ConvertXAMLtoHTML(string xamlText)
Parameters
Type Name Description
string xamlText

The string in XAML.

Returns
Type Description
string

The string in HTML.

  • View Source
In this article
Back to top Generated by DocFX