LoadOptions constructor

__init__(self)

Initializes a new instance of LoadOptions class.


def __init__(self):
    ...

__init__(self, password)

Initializes a new instance of LoadOptions class with specified password.


def __init__(self, password):
    ...
Parameter Type Description
password str Password for protected files

__init__(self, pre_rasterize)

Initializes a new instance of LoadOptions class with specified pre-rasterization flag.


def __init__(self, pre_rasterize):
    ...
Parameter Type Description
pre_rasterize bool If true, force rasterization on loading

__init__(self, password, pre_rasterize)

Initializes a new instance of LoadOptions class with specified password.


def __init__(self, password, pre_rasterize):
    ...
Parameter Type Description
password str Password for protected files
pre_rasterize bool If true, force rasterization on loading

See Also