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