Multi-line edit in Inno Setup on page created by CreateInputQueryPage
问题 By default, when you add a TEdit to a page in Inno Setup, the height is one line. How do I increase the height of the edit? Here is the relevant part of the ISS file ContractConfigPage := CreateInputQueryPage(ServerConfigPage.ID, 'Map contract as JSON', 'Please enter the map contract to use in JSON format', ''); ContractConfigPage.Add('JSON', False); ContractConfigPage.Edits[0].Height := 100; { does not have any effect } Edit: I am now able to have a bigger edit but I can not have multiple