Interface ITextBasedWorkbookFormatProvider
Represents text based workbook format provider.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.FormatProviders
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public interface ITextBasedWorkbookFormatProvider : IWorkbookFormatProvider
Methods
Export(Workbook)
Exports the specified workbook.
Declaration
[Obsolete("This method is obsolete. Please use Export(Workbook workbook, TimeSpan? timeout) instead.")]
string Export(Workbook workbook)
Parameters
Workbook
workbook
The workbook. |
Returns
System.String
The result string. |
Export(Workbook, Nullable<TimeSpan>)
Exports the specified workbook.
Declaration
string Export(Workbook workbook, TimeSpan? timeout)
Parameters
Workbook
workbook
The workbook. |
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
[Obsolete("This method is obsolete. Please use Import(string input, TimeSpan? timeout) instead.")]
Workbook Import(string input)
Parameters
System.String
input
The input. |
Returns
Workbook
The workbook. |
Import(String, Nullable<TimeSpan>)
Imports the specified input.
Declaration
Workbook 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
Workbook
The workbook. |