ExporterRegistry
Overview
ExporterRegistry is a class in Aspose.Slides for Python.
Central registry for format exporters.
Methods
| Signature | Description |
|---|---|
register(exporter_class: Type[ExporterBase]) | Register an exporter class for its supported formats. |
unregister(format_value: str) → bool | Unregister an exporter for a specific format. |
get_exporter(format_value: str) → Optional[ExporterBase] | Get an exporter instance for a specific format. |
get_exporter_class(format_value: str) → Optional[Type[ExporterBase]] | Get the exporter class for a specific format. |
is_format_supported(format_value: str) → bool | Check if a format has a registered exporter. |
get_supported_formats() → list[str] | Get all formats that have registered exporters. |
clear() | Clear all registered exporters. |