[]
The abstract base class for all image export providers. Derived classes must override the GetImageFormat() method.
public abstract class ImageExportProvider : PagesExportProvider
| Name | Description |
|---|---|
| CanShowOptions | Gets a value indicating whether the associated ImageExporter can show a dialog allowing the user to edit the export options. This implementation returns true. |
| DefaultExtension | Gets the default filename extension for the current image export format. |
| DefaultOptionsFormClass | Gets the type of form which is used to edit export options by default. This implementation returns ImagesOptionsForm type. |
| ImageFormat | Gets the ImageFormat associated with the current export provider. |
| Name | Description |
|---|---|
| GetImageFormat() | Gets the image format associated with the current export provider. Must be overridden in a derived class to return a specific image format. |
| NewExporter() | Creates a new instance of ImageExporter, sets the ImageFormat property on that instance to the image format returned by GetImageFormat(). |