LowCodePdfSaveOptions

LowCodePdfSaveOptions class

Options for saving pdf in low code way.

class LowCodePdfSaveOptions extends LowCodeSaveOptions;

Constructors

ConstructorDescription
constructor(LowCodeSaveOptions)Constructs from a parent object convertible to this.
constructor()Default Constructor.

Properties

PropertyTypeDescription
pdfOptionsPdfSaveOptionsThe options for saving Pdf file.
outputFilestringGets and sets the file(with path if needed) for saving the generated data. When setting this property with value other than null or empty string, OutputStream will be ignored.
outputStreamUint8ArrayGets and sets the Stream for writing the generated data to. When setting this property with value other than null, OutputFile will be ignored.

Methods

MethodDescription
getPdfOptions()@deprecated. Please use the ‘pdfOptions’ property instead. The options for saving Pdf file.
setPdfOptions(PdfSaveOptions)@deprecated. Please use the ‘pdfOptions’ property instead. The options for saving Pdf file.
isNull()Checks whether the implementation object is null.
getOutputFile()@deprecated. Please use the ‘outputFile’ property instead. Gets and sets the file(with path if needed) for saving the generated data. When setting this property with value other than null or empty string, OutputStream will be ignored.
setOutputFile(string)@deprecated. Please use the ‘outputFile’ property instead. Gets and sets the file(with path if needed) for saving the generated data. When setting this property with value other than null or empty string, OutputStream will be ignored.
getOutputStream()@deprecated. Please use the ‘outputStream’ property instead. Gets and sets the Stream for writing the generated data to. When setting this property with value other than null, OutputFile will be ignored.
setOutputStream(Uint8Array)@deprecated. Please use the ‘outputStream’ property instead. Gets and sets the Stream for writing the generated data to. When setting this property with value other than null, OutputFile will be ignored.
getSaveFormat()The save format for the output. For converting to pdf, it can only be SaveFormat.Pdf.
setSaveFormat(SaveFormat)The save format for the output. For converting to pdf, it can only be SaveFormat.Pdf.

constructor(LowCodeSaveOptions)

Constructs from a parent object convertible to this.

constructor(obj: LowCodeSaveOptions);

Parameters:

ParameterTypeDescription
objLowCodeSaveOptionsThe parent object.

constructor()

Default Constructor.

constructor();

pdfOptions

The options for saving Pdf file.

pdfOptions : PdfSaveOptions;

outputFile

Gets and sets the file(with path if needed) for saving the generated data. When setting this property with value other than null or empty string, OutputStream will be ignored.

outputFile : string;

outputStream

Gets and sets the Stream for writing the generated data to. When setting this property with value other than null, OutputFile will be ignored.

outputStream : Uint8Array;

getPdfOptions()

@deprecated. Please use the ‘pdfOptions’ property instead. The options for saving Pdf file.

getPdfOptions() : PdfSaveOptions;

Returns

PdfSaveOptions

setPdfOptions(PdfSaveOptions)

@deprecated. Please use the ‘pdfOptions’ property instead. The options for saving Pdf file.

setPdfOptions(value: PdfSaveOptions) : void;

Parameters:

ParameterTypeDescription
valuePdfSaveOptionsThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;

getOutputFile()

@deprecated. Please use the ‘outputFile’ property instead. Gets and sets the file(with path if needed) for saving the generated data. When setting this property with value other than null or empty string, OutputStream will be ignored.

getOutputFile() : string;

setOutputFile(string)

@deprecated. Please use the ‘outputFile’ property instead. Gets and sets the file(with path if needed) for saving the generated data. When setting this property with value other than null or empty string, OutputStream will be ignored.

setOutputFile(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

getOutputStream()

@deprecated. Please use the ‘outputStream’ property instead. Gets and sets the Stream for writing the generated data to. When setting this property with value other than null, OutputFile will be ignored.

getOutputStream() : Uint8Array;

setOutputStream(Uint8Array)

@deprecated. Please use the ‘outputStream’ property instead. Gets and sets the Stream for writing the generated data to. When setting this property with value other than null, OutputFile will be ignored.

setOutputStream(value: Uint8Array) : void;

Parameters:

ParameterTypeDescription
valueUint8ArrayThe value to set.

getSaveFormat()

The save format for the output. For converting to pdf, it can only be SaveFormat.Pdf.

getSaveFormat() : SaveFormat;

Returns

SaveFormat

setSaveFormat(SaveFormat)

The save format for the output. For converting to pdf, it can only be SaveFormat.Pdf.

setSaveFormat(value: SaveFormat) : void;

Parameters:

ParameterTypeDescription
valueSaveFormatThe value to set.