LowCodeLoadOptions

LowCodeLoadOptions class

Options for loading template file.

class LowCodeLoadOptions;

Constructors

ConstructorDescription
constructor()Default Constructor.

Properties

PropertyTypeDescription
inputFilestringGets and sets the file(with path if needed) of the template.
inputStreamUint8ArrayGets and sets the Stream of the template.

Methods

MethodDescription
getInputFile()@deprecated. Please use the ‘inputFile’ property instead. Gets and sets the file(with path if needed) of the template.
setInputFile(string)@deprecated. Please use the ‘inputFile’ property instead. Gets and sets the file(with path if needed) of the template.
getInputStream()@deprecated. Please use the ‘inputStream’ property instead. Gets and sets the Stream of the template.
setInputStream(Uint8Array)@deprecated. Please use the ‘inputStream’ property instead. Gets and sets the Stream of the template.
isNull()Checks whether the implementation object is null.

constructor()

Default Constructor.

constructor();

inputFile

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

inputFile : string;

Remarks

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

inputStream

Gets and sets the Stream of the template.

inputStream : Uint8Array;

Remarks

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

getInputFile()

@deprecated. Please use the ‘inputFile’ property instead. 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)

@deprecated. Please use the ‘inputFile’ property instead. 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()

@deprecated. Please use the ‘inputStream’ property instead. 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)

@deprecated. Please use the ‘inputStream’ property instead. 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;