Ejemplo n.º 1
0
        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());
            }
        }
Ejemplo n.º 2
0
        public FieldLayoutTable GetFieldLayoutTable()
        {
            FieldLayoutTable table = m_heap [FieldLayoutTable.RId] as FieldLayoutTable;

            if (table != null)
            {
                return(table);
            }

            table = new FieldLayoutTable();
            InitializeTable(table);
            return(table);
        }