Interface ITextBasedFormatProvider<T>
Represents interface for text base format provider.
Namespace: Telerik.Windows.Documents.Common.FormatProviders
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public interface ITextBasedFormatProvider<T>
Type Parameters
T
|
Methods
Export(T)
Exports the specified document.
Declaration
string Export(T document)
Parameters
T
document
The document. |
Returns
System.String
The result string. |
Export(T, Nullable<TimeSpan>)
Exports the specified document.
Declaration
string Export(T document, TimeSpan? timeout)
Parameters
T
document
The document. |
System.Nullable<System.TimeSpan>
timeout
The timeout after which the operation will be cancelled. |
Returns
System.String
The result string. |
Import(String)
Imports the specified input.
Declaration
T Import(string input)
Parameters
System.String
input
The input. |
Returns
T
The document. |
Import(String, Nullable<TimeSpan>)
Imports the specified input.
Declaration
T Import(string input, TimeSpan? timeout)
Parameters
System.String
input
The input. |
System.Nullable<System.TimeSpan>
timeout
The timeout after which the operation will be cancelled. |
Returns
T
The document. |