LowCodeLoadOptions

LowCodeLoadOptions class

Options for loading template file.

class LowCodeLoadOptions;

Constructors

NameDescription
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.

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.