Ejemplo n.º 1
0
 public static int?GetBottom([NotNull] BlockElement @this) => @this.GetValueSafe(BottomProperty);
Ejemplo n.º 2
0
 public static int?GetRight([NotNull] BlockElement @this) => @this.GetValueSafe(RightProperty);
Ejemplo n.º 3
0
 public static int?GetTop([NotNull] BlockElement @this) => @this.GetValueSafe(TopProperty);
Ejemplo n.º 4
0
 public static void SetBottom([NotNull] BlockElement @this, int?value) => @this.SetValueSafe(BottomProperty, value);
Ejemplo n.º 5
0
 public static void SetRight([NotNull] BlockElement @this, int?value) => @this.SetValueSafe(RightProperty, value);
Ejemplo n.º 6
0
 public static void SetTop([NotNull] BlockElement @this, int?value) => @this.SetValueSafe(TopProperty, value);