Readonly
eventsEvents that can be triggered by the converter manager.
These events allow applications to respond to converter registration and unregistration.
Fired when a converter is registered
Fired when a converter is unregistered
Gets all registered file types.
An iterator of all registered file types
Static
instanceGets the singleton instance of this class.
The singleton instance of AcDbDatabaseConverterManager
Gets the database converter associated with the specified file type.
The file type to get the converter for
The database converter associated with the specified file type, or undefined if not found
Registers a database converter for the specified file type.
The file type to register the converter for
The database converter to register
Unregisters the database converter for the specified file type.
The file type to unregister the converter for
Static
createCreates a new instance of AcDbDatabaseConverterManager.
The singleton instance of AcDbDatabaseConverterManager
Manager for registering and managing database converters by file type.
This class provides a centralized way to register database converters for different file types (DXF, DWG, etc.) and retrieve the appropriate converter for a given file type. It implements the singleton pattern and provides event notifications when converters are registered or unregistered.
Example