2020-01-15 05:07 PM
One idea i have is to put N*textArea in a Container.
Solved! Go to Solution.
2020-01-16 12:33 AM
That's one way of doing it. You could combine it with ListLayout.
namespace touchgfx
{
/**
* @class ListLayout ListLayout.hpp touchgfx/containers/ListLayout.hpp
*
* @brief This class provides a layout mechanism for arranging Drawable instances adjacently in the
* specified Direction.
*
* This class provides a layout mechanism for arranging Drawable instances adjacently in
* the specified Direction. The first element in the ListLayout is positioned in the
* ListLayout origin (0,0). The dimension of this class is automatically expanded to
* cover the area of the added Drawable instances.
*
* @see Container
*/
class ListLayout : public Container
{
/Martin
2020-01-16 12:33 AM
That's one way of doing it. You could combine it with ListLayout.
namespace touchgfx
{
/**
* @class ListLayout ListLayout.hpp touchgfx/containers/ListLayout.hpp
*
* @brief This class provides a layout mechanism for arranging Drawable instances adjacently in the
* specified Direction.
*
* This class provides a layout mechanism for arranging Drawable instances adjacently in
* the specified Direction. The first element in the ListLayout is positioned in the
* ListLayout origin (0,0). The dimension of this class is automatically expanded to
* cover the area of the added Drawable instances.
*
* @see Container
*/
class ListLayout : public Container
{
/Martin