LowCodeLoadOptions
LowCodeLoadOptions class
Options for loading template file.
class LowCodeLoadOptions;
Constructors
Constructor | Description |
---|---|
constructor() | Default Constructor. |
Properties
Property | Type | Description |
---|---|---|
inputFile | string | Gets and sets the file(with path if needed) of the template. |
inputStream | Uint8Array | Gets and sets the Stream of the template. |
Methods
Method | Description |
---|---|
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:
Parameter | Type | Description |
---|---|---|
value | string | The 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:
Parameter | Type | Description |
---|---|---|
value | Uint8Array | The 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;