Пример #1
0
 public CSSLengthUnit(int units, CSSUnit unitCategory)
 {
     this.Units        = units;
     this.UnitCategory = unitCategory;
 }
Пример #2
0
 public static string ToCss(int value, CSSUnit unit)
 => unit switch
 {
Пример #3
0
 public Lenght(int value, CSSUnit unit)
 {
     Value = value;
     Unit  = unit;
     Set   = true;
 }