Class BinaryWorkbookFormatProviderBase
Provides the base class from which the classes that represent binary workbook format providers are derived.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.FormatProviders
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public abstract class BinaryWorkbookFormatProviderBase : WorkbookFormatProviderBase, IBinaryWorkbookFormatProvider, IWorkbookFormatProvider
Constructors
BinaryWorkbookFormatProviderBase()
Declaration
protected BinaryWorkbookFormatProviderBase()
Methods
Export(Workbook)
Exports the specified workbook.
Declaration
[Obsolete("This method is obsolete. Please use Export(Workbook workbook, TimeSpan? timeout) instead.")]
public byte[] Export(Workbook workbook)
Parameters
Workbook
workbook
The workbook. |
Returns
System.Byte[]
The result byte array. |
Implements
Export(Workbook, Nullable<TimeSpan>)
Exports the specified workbook.
Declaration
public byte[] 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.Byte[]
The result byte array. |
Import(Byte[])
Imports the specified input.
Declaration
[Obsolete("This method is obsolete. Please use Import(byte[] input, TimeSpan? timeout) instead.")]
public Workbook Import(byte[] input)
Parameters
System.Byte[]
input
The input. |
Returns
Workbook
The workbook. |
Implements
Import(Byte[], Nullable<TimeSpan>)
Imports the specified input.
Declaration
public Workbook Import(byte[] input, TimeSpan? timeout)
Parameters
System.Byte[]
input
The input. |
System.Nullable<System.TimeSpan>
timeout
The timeout after which the operation will be cancelled. |
Returns
Workbook
The workbook. |