I'm designing an application in Firemonkey and some of the controls are inside a scrollbox. Is there a way to edit the content of the part outside the Scrollbox's displayed area, by moving somehow the scrollbars at DesignTime?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I've had the same experience. The only way I can make the scroll box scroll in design mode is by using the mouse wheel. If it weren't for that, I don't know how a person could design outside the viewable portion of the scroll box. Is that what you do currently? |
|||
|
|
|
I think that you can't directly do that (because the scrollbars are not exposed in the prop. inspector). It seems that the only way would be to select the object you want to edit inside the structure tree and then to set its properties, such as the position, in the inspector. Alternatively you could create a ScrollBox descendant and publish the scrollbars (with stored set to false) so that their values can be changed at design-time. |
|||
|