public StatisticInfoColumnInfoProgress(float pPercentage, HorizontalStatisticAlignment pH, VerticalStatisticAlignment pV) : base(pH, pV)
 {
     Percentage = pPercentage;
 }
 public StatisticInfoColumnInfoText(String pText, HorizontalStatisticAlignment pH, VerticalStatisticAlignment pV) : base(pH, pV)
 {
     Text = pText;
 }
 public StatisticInfoColumnInfoImage(BCImage pImage, HorizontalStatisticAlignment pH, VerticalStatisticAlignment pV) : base(pH, pV)
 {
     CellImage = pImage;
 }
 protected StatisticInfoColumnInfo(HorizontalStatisticAlignment pH, VerticalStatisticAlignment pV)
 {
     HAlign = pH;
     VAlign = pV;
 }