LowCodeLoadOptions

LowCodeLoadOptions class

Options for loading template file.

class LowCodeLoadOptions;

Constructors

NameDescription
constructor()Default Constructor.

Methods

MethodDescription
getInputFile()Gets and sets the file(with path if needed) of the template.
setInputFile(string)Gets and sets the file(with path if needed) of the template.
getInputStream()Gets and sets the Stream of the template.
setInputStream(Uint8Array)Gets and sets the Stream of the template.
isNull()Checks whether the implementation object is null.

constructor()

Default Constructor.

constructor();

getInputFile()

Gets and sets the file(with path if needed) of the template.

getInputFile() : string;

Remarks

When setting a non-null and non-empty path to this property, the previously set value for InputStream will be ignored.

setInputFile(string)

Gets and sets the file(with path if needed) of the template.

setInputFile(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

Remarks

When setting a non-null and non-empty path to this property, the previously set value for InputStream will be ignored.

getInputStream()

Gets and sets the Stream of the template.

getInputStream() : Uint8Array;

Remarks

When setting a non-null Stream to this property, the previously set value for InputFile will be ignored.

setInputStream(Uint8Array)

Gets and sets the Stream of the template.

setInputStream(value: Uint8Array) : void;

Parameters:

ParameterTypeDescription
valueUint8ArrayThe value to set.

Remarks

When setting a non-null Stream to this property, the previously set value for InputFile will be ignored.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;