LowCodeLoadOptions
LowCodeLoadOptions class
Options for loading template file.
class LowCodeLoadOptions;
Constructors
Name | Description |
---|---|
constructor() | Default Constructor. |
Methods
Method | Description |
---|---|
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:
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()
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:
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;