Class DocumentFormatProviderBase
A base class defining members for importing and exporting content to/from Rad
Inheritance
Inherited Members
Namespace: Telerik.WinForms.Documents.FormatProviders
Assembly: Telerik.WinControls.RichTextEditor.dll
Syntax
public abstract class DocumentFormatProviderBase : IDocumentFormatProvider
Constructors
DocumentFormatProviderBase()
Declaration
protected DocumentFormatProviderBase()
Properties
CanExport
Gets a value indicating whether this instance can export.
Declaration
public abstract bool CanExport { get; }
Property Value
System.
|
Implements
CanImport
Gets a value indicating whether this instance can import.
Declaration
public abstract bool CanImport { get; }
Property Value
System.
|
Implements
FilesDescription
Gets the description of the supported file formats.
Declaration
public virtual string FilesDescription { get; }
Property Value
System. The files description. |
Implements
Name
Gets the name of the specific format provider.
Declaration
public abstract string Name { get; }
Property Value
System. The name. |
Implements
SupportedExtensions
Gets the extensions supported by this format provider.
Declaration
public abstract IEnumerable<string> SupportedExtensions { get; }
Property Value
System. The supported extensions. |
Implements
Methods
Export(RadDocument)
Exports the specified document to a System.
Declaration
public virtual byte[] Export(RadDocument document)
Parameters
Rad The document. |
Returns
System. A System. |
Implements
Export(RadDocument, Stream)
Exports the specified Rad
Declaration
public abstract void Export(RadDocument document, Stream output)
Parameters
Rad The document. |
System. The System. |
Implements
Import(Byte[])
Imports the specified System.
Declaration
public virtual RadDocument Import(byte[] input)
Parameters
System. The System. |
Returns
Rad The generated Rad |
Implements
Import(Stream)
Imports the specified System.
Declaration
public abstract RadDocument Import(Stream input)
Parameters
System. The System. |
Returns
Rad The generated Rad |