I need to determine the value of the WizardStyle
setup directive for a conditional in my Pascal Script section. To do something like this:
if WizardStyle = "Modern" then
begin
// Code to run for "modern" style.
end
else if WizardStyle = "Classic" then
begin
// Code to run for "classic" style.
end;
How can achieve this? This does not seem to work: ExpandConstant('{WizardStyle}')
I have read this, but I don't take things in clear about how to determine the value of this directive: