public override void VisitFieldLayoutTable(FieldLayoutTable table) { int number = m_rows [FieldLayoutTable.RId]; table.Rows = new RowCollection(number); for (int i = 0; i < number; i++) { table.Rows.Add(new FieldLayoutRow()); } }
public FieldLayoutTable GetFieldLayoutTable() { FieldLayoutTable table = m_heap [FieldLayoutTable.RId] as FieldLayoutTable; if (table != null) { return(table); } table = new FieldLayoutTable(); InitializeTable(table); return(table); }