Eto.Forms.TableLayout.TableLayout C# (CSharp) Method

TableLayout() public method

Initializes a new instance of the Eto.Forms.TableLayout class with the specified rows.
public TableLayout ( bool yscale ) : System
yscale bool Scale all rows
return System
		public TableLayout(bool yscale, params TableRow[] rows)
		{
			if (yscale)
				foreach (TableRow row in rows)
					if(row != null)
						row.ScaleHeight = true;
			Rows = new TableRowCollection(this, rows);
			Create();
			Initialize();
		}

Same methods

TableLayout::TableLayout ( ) : System
TableLayout::TableLayout ( IEnumerable rows ) : System
TableLayout::TableLayout ( Eto.Drawing.Size dimensions ) : System
TableLayout::TableLayout ( int columns, int rows ) : System