Interface IDocumentFormatProvider
Namespace: Telerik.Windows.Documents.FormatProviders
Assembly: Telerik.Windows.Documents.dll
Syntax
public interface IDocumentFormatProvider
Properties
CanExport
Declaration
bool CanExport { get; }
Property Value
System.Boolean
|
CanImport
Declaration
bool CanImport { get; }
Property Value
System.Boolean
|
FilesDescription
Declaration
string FilesDescription { get; }
Property Value
System.String
|
Name
Declaration
string Name { get; }
Property Value
System.String
|
SupportedExtensions
Declaration
IEnumerable<string> SupportedExtensions { get; }
Property Value
System.Collections.Generic.IEnumerable<System.String>
|
Methods
Export(RadDocument)
Declaration
byte[] Export(RadDocument document)
Parameters
RadDocument
document
|
Returns
System.Byte[]
|
Export(RadDocument, Stream)
Declaration
void Export(RadDocument document, Stream output)
Parameters
RadDocument
document
|
System.IO.Stream
output
|