Exemplo n.º 1
0
 public CSSLengthUnit(int units, CSSUnit unitCategory)
 {
     this.Units        = units;
     this.UnitCategory = unitCategory;
 }
Exemplo n.º 2
0
 public static string ToCss(int value, CSSUnit unit)
 => unit switch
 {
Exemplo n.º 3
0
 public Lenght(int value, CSSUnit unit)
 {
     Value = value;
     Unit  = unit;
     Set   = true;
 }