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 ( IEnumerable rows ) : System
rows IEnumerable Rows to populate the table.
return System
		public TableLayout(IEnumerable<TableRow> rows)
		{
			Rows = new TableRowCollection(this, rows);
			Create();
			Initialize();
		}

Same methods

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