public void ToggleFormat()
 {
     if (format == MetaTableFormatType.vertical)
     {
         format       = MetaTableFormatType.horizontal;
         IsTransposed = true;
     }
     else
     {
         format       = MetaTableFormatType.vertical;
         IsTransposed = true;
     }
     sourceDescription.Transpose();
 }
 public MetaTableDescription(SourceTableDescription sourceDesc, MetaTableFormatType orientation)
 {
     sourceDescription = sourceDesc;
     format            = orientation;
 }