Пример #1
0
 public UISAnimationProperty(AnimationType prop, UISLiteralValue value) : base(ValueType.ANIMATE_PROP)
 {
     AnimationType = prop;
     Value         = value;
 }
Пример #2
0
 public UISVector(UISLiteralValue first, UISLiteralValue second, bool havePar) : base(ValueType.VECTOR)
 {
     First        = first;
     Second       = second;
     IncludeByPar = havePar;
 }
Пример #3
0
 public UISSimpleExpr(UISLiteralValue firstOph, UISLiteralValue secondOph, bool isPlus = true) : base(ValueType.SIMPLE_EXPR)
 {
     First = firstOph; Second = secondOph;
     IsAdd = isPlus;
 }
Пример #4
0
 public UISRelativeVector(UISLiteralValue first, UISLiteralValue second, string relative, bool havePar) : base(first, second, havePar)
 {
     this.Relative = relative;
 }
Пример #5
0
 public UISRect(UISLiteralValue w, UISLiteralValue h, UISLiteralValue x, UISLiteralValue y) : base(ValueType.RECT)
 {
     Width = w; Height = h; X = x; Y = y;
 }