Converter constructor
Contents
[
Hide
]
init
Initializes new instance of Converter class.
def __init__(self, document):
...
| Parameter | Type | Description |
|---|---|---|
| document | io.RawIOBase | Readable stream. |
Exceptions
| Exception | Description |
|---|---|
| ArgumentNullException | Thrown when document is null. |
init
Initializes new instance of Converter class.
def __init__(self, file_path):
...
| Parameter | Type | Description |
|---|---|---|
| file_path | str | The file path to the source document. |
init
Initializes new instance of Converter class.
def __init__(self, document, settings):
...
| Parameter | Type | Description |
|---|---|---|
| document | io.RawIOBase | Readable stream. |
| settings | ConverterSettings |
The Converter settings. |
init
Initializes new instance of Converter class.
def __init__(self, document, load_options):
...
| Parameter | Type | Description |
|---|---|---|
| document | io.RawIOBase | Readable stream. |
| load_options | groupdocs.conversion.options.load.LoadOptions | Document load options. |
init
Initializes new instance of Converter class.
def __init__(self, file_path, settings):
...
| Parameter | Type | Description |
|---|---|---|
| file_path | str | The file path to the source document. |
| settings | ConverterSettings |
The Converter settings. |
init
Initializes new instance of Converter class.
def __init__(self, file_path, load_options):
...
| Parameter | Type | Description |
|---|---|---|
| file_path | str | The file path to the source document. |
| load_options | groupdocs.conversion.options.load.LoadOptions | Document load options. |
init
Initializes new instance of Converter class.
def __init__(self, document, load_options, settings):
...
| Parameter | Type | Description |
|---|---|---|
| document | io.RawIOBase | Readable stream. |
| load_options | groupdocs.conversion.options.load.LoadOptions | Document load options. |
| settings | ConverterSettings |
The Converter settings. |
init
Initializes new instance of Converter class.
def __init__(self, file_path, load_options, settings):
...
| Parameter | Type | Description |
|---|---|---|
| file_path | str | The file path to the source document. |
| load_options | groupdocs.conversion.options.load.LoadOptions | Document load options. |
| settings | ConverterSettings |
The Converter settings. |
See Also
- module
groupdocs.conversion - class
Converter