Ejemplo n.º 1
0
 public Box(LengthHint top, LengthHint right, LengthHint bottom, LengthHint left) : this()
 {
     Top    = top;
     Right  = right;
     Bottom = bottom;
     Left   = left;
 }
Ejemplo n.º 2
0
 public Box(LengthHint top, LengthHint right) : this(top, right, top, right)
 {
 }
Ejemplo n.º 3
0
 public Box(LengthHint top, LengthHint right, LengthHint bottom) : this(top, right, bottom, right)
 {
 }
Ejemplo n.º 4
0
 public Box(LengthHint top) : this(top, top, top, top)
 {
 }