Hello Rhino Developers,
I am wondering how to make a constant Row Height, in the situation of invisible content.
for example :
private Label HiddenMessage = new Label()
{
Text = "Can't Find Curve",
Width = 100,
Height = 20,
Visible = false
};
Then I add it to the layout like that. I keep a place for it, for when I need it to be visible.
TableLayout tableLayout = new TableLayout()
{
Padding = new Padding(0),
Spacing = new Size(5, 20),
Rows = {
new TableRow(SearchBoxTxt),
new TableRow(HiddenMessage),
},
the layout “moves” when it is visible or not. how can I keep a constant row height even when it is an invisible row?
thanks in advance,
Hanan