Comparer constructor

init

Initializes new instance of Comparer class with source file path.

def __init__(self, file_path):
    ...
Parameter Type Description
file_path str File path

init

Initializes new instance of Comparer class with source document stream.

def __init__(self, document):
    ...
Parameter Type Description
document io.RawIOBase Source document stream

init

Initializes new instance of Comparer with source folder path and CompareOptions.

def __init__(self, folder_path, compare_options):
    ...
Parameter Type Description
folder_path str Folder path
compare_options groupdocs.comparison.options.CompareOptions Compare options

init

Initializes new instance of Comparer with source file path and LoadOptions.

def __init__(self, file_path, load_options):
    ...
Parameter Type Description
file_path str File path
load_options groupdocs.comparison.options.LoadOptions Load options

init

Initializes new instance of Comparer class with source file path and ComparerSettings.

def __init__(self, file_path, settings):
    ...
Parameter Type Description
file_path str File path
settings ComparerSettings Settings for comparison

init

Initializes new instance of Comparer with source document stream and LoadOptions.

def __init__(self, document, load_options):
    ...
Parameter Type Description
document io.RawIOBase Source document stream
load_options groupdocs.comparison.options.LoadOptions Load options

init

Initializes new instance of Comparer class with source document stream and ComparerSettings.

def __init__(self, document, settings):
    ...
Parameter Type Description
document io.RawIOBase Source document stream
settings ComparerSettings Settings for comparison

init

Initializes new instance of Comparer class with source file path, LoadOptions and ComparerSettings.

def __init__(self, file_path, load_options, settings):
    ...
Parameter Type Description
file_path str File path
load_options groupdocs.comparison.options.LoadOptions Load options
settings ComparerSettings Settings for comparison

init

Initializes new instance of Comparer class with document stream, LoadOptions and ComparerSettings.

def __init__(self, document, load_options, settings):
    ...
Parameter Type Description
document io.RawIOBase Source document stream
load_options groupdocs.comparison.options.LoadOptions Load options
settings ComparerSettings Settings for comparison

See Also