public BasicColumnStyle(BasicSizeType sizeType, float width) : base(sizeType)
 {
     Width = width;
 }
 protected BasicTableLayoutStyle(BasicSizeType sizeType)
 {
     SizeType = sizeType;
 }
 public BasicRowStyle(BasicSizeType sizeType, float height)
     : base(sizeType)
 {
     Height = height;
 }
Exemple #4
0
 protected BasicTableLayoutStyle(BasicSizeType sizeType)
 {
     SizeType = sizeType;
 }
 public BasicRowStyle(BasicSizeType sizeType, float height) : base(sizeType)
 {
     Height = height;
 }
 public BasicColumnStyle(BasicSizeType sizeType, float width)
     : base(sizeType)
 {
     Width = width;
 }