SaveOptions.SaveOptions

SaveOptions()

Initializes a new instance of the SaveOptions class with default values for flags !:SuppressErrors (true) and Debug (false).

public SaveOptions()

See Also


SaveOptions(bool)

Initializes a new instance of the SaveOptions class with default value for flag Debug (false).

public SaveOptions(bool supressErrors)
ParameterTypeDescription
supressErrorsBooleanSpecifies whether errors must be suppressed or not. If true suppressed errors are added to Exceptions list.

See Also


SaveOptions(Size)

Initializes a new instance of the SaveOptions with with specified size of the page.

public SaveOptions(Size size)
ParameterTypeDescription
sizeSizeThe page size.

See Also


SaveOptions(bool, Size)

Initializes a new instance of the SaveOptions class with default value for flag Debug (false) and with specified size of the page.

public SaveOptions(bool supressErrors, Size size)
ParameterTypeDescription
supressErrorsBooleanSpecifies whether errors must be suppressed or not. If true suppressed errors are added to Exceptions list.
sizeSizeThe page size.

See Also