private static Table CreateTable()
 {
     Table table = new Table {
         Width = Unit.Percentage(100.0),
         Height = Unit.Percentage(100.0)
     };
     table.PreventAutoID();
     return table;
 }