Esempio n. 1
0
 public Table(Report report, Xbrl.Table.Layout.Table table, uint zSlice = 0)
 {
     Report      = report;
     LayoutTable = table;
     ZSlice      = zSlice;
     OpenAspects = GetOpenAspects();
 }
Esempio n. 2
0
 static internal bool IsTableRowEmpty(Xbrl.Table.Layout.Table table, int y, uint z)
 {
     for (uint x = 0; x < table.Shape.X; ++x)
     {
         if (table.GetCell(x, (uint)y, z).Facts.Count > 0)
         {
             return(false);
         }
     }
     return(true);
 }