IParameters
1. Definition
The definition of the interface IParameters, which is used to create Scriptlets looks like this:
IParameters procedure SetValueAsString(const Key: string; const Value: string); function GetValueAsString(const Key: string): string; procedure SetValueAsFloat(const Key: string; const Value: Single); function GetValueAsFloat(const Key: string): Single; procedure SetValueAsInteger(const Key: string; const Value: Int64); function GetValueAsInteger(const Key: string): Int64; procedure SetValueAsBoolean(const Key: string; const Value: Boolean); function GetValueAsBoolean(const Key: string): Boolean; end;
2. Methods