Row's height in TableListBox

Hi.

Do you know how can I set the row’s height in a TableListBox?
I know I can set it in a ListBox class, but I really want to keep using the TableListBox.

Thanks.

class JUCE_API TableListBox : public ListBox, private ListBoxModel, private TableHeaderComponent::Listener

It would seem TableListBox is derived from ListBox, therefore why not just call setRowHeight() on your TableListBox?

Are you using C++?

2 Likes

There’s a point in my day, usually after 12 hours coding, that I know I should leave my laptop to itself and do some other stuff…
Now I know I should definitely not post anything after that point…

Thanks.

Thank you @TheVinn, your answer is useful for me.