Interface IBinaryWorkbookFormatProvider
Interface for format providers that import and export workbooks using binary representations such as byte arrays.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.FormatProviders
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public interface IBinaryWorkbookFormatProvider : IWorkbookFormatProvider
Methods
Export(Workbook)
Exports the specified workbook to a byte array.
Declaration
byte[] Export(Workbook workbook)
Parameters
|
Workbook
workbook
The workbook. |
Returns
|
System.Byte[]
The result byte array. |
Import(Byte[])
Imports a workbook from the specified byte array.
Declaration
Workbook Import(byte[] input)
Parameters
|
System.Byte[]
input
The input. |
Returns
|
Workbook
The workbook. |