IParameters

1. Definition

Die Definition des Interfaces IParameter, welches zur Erstellung von Scriptlets verwendet wird, sieht folgendermaßen aus:

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