LoadOptions

LoadOptions()

Initializes a new instance of LoadOptions class.

public LoadOptions()

See Also


LoadOptions(FileType)

Initializes a new instance of LoadOptions class with the specified file type.

public LoadOptions(FileType fileType)
Parameter Type Description
fileType FileType The type of the file to open.

Exceptions

exception condition
ArgumentNullException Thrown when fileType is null.

See Also


LoadOptions(string)

Initializes a new instance of LoadOptions class with specified password.

public LoadOptions(string password)
Parameter Type Description
password String Password for protected files

See Also


LoadOptions(bool)

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

public LoadOptions(bool preRasterize)
Parameter Type Description
preRasterize Boolean If true, force rasterization on loading

See Also


LoadOptions(string, bool)

Initializes a new instance of LoadOptions class with specified password.

public LoadOptions(string password, bool preRasterize)
Parameter Type Description
password String Password for protected files
preRasterize Boolean If true, force rasterization on loading

See Also