OnGetElementProfile

This event can be used to modify a components (elements) profile

Example and syntax

{This script is extremely simplified, as these script events can be quite complex 
and very different from installation to installation}
procedure OnGetElementProfile(aParams:TScriptOnGetElementProfileParams);
begin
  aParams.Profile := 
      aParams.Profile 
    + GetGrooveProfileCode(aParams); //Helper function example that must be defined
end;

Last updated

Was this helpful?