Strona wpLicese sprawdź, czy pozycja ScrollBars jest maksymalna (Inno Setup)

Czy można sprawdzić pozycję ScrollBar na stronie wpLicense w Inno Setup bez konieczności pisania niestandardowej strony notatek?

na przykład

procedure CurPageChanged(CurPageID: Integer);
 begin

     if CurPageID = wpLicense then
        WizardForm.LicenseAcceptedRadio.Enabled := False;
        WizardForm.LicenseNotAcceptedRadio.Enabled := False;

     if ScrollBar.Position := ScrollBar.Max then
        WizardForm.LicenseAcceptedRadio.Enabled := True;
        WizardForm.LicenseNotAcceptedRadio.Enabled := True;
  end;

questionAnswers(2)

yourAnswerToTheQuestion