コード例 #1
0
 public static int?GetBottom([NotNull] BlockElement @this) => @this.GetValueSafe(BottomProperty);
コード例 #2
0
 public static int?GetRight([NotNull] BlockElement @this) => @this.GetValueSafe(RightProperty);
コード例 #3
0
 public static int?GetTop([NotNull] BlockElement @this) => @this.GetValueSafe(TopProperty);
コード例 #4
0
ファイル: Absolute.cs プロジェクト: tig/CsConsoleFormat
 public static void SetBottom([NotNull] BlockElement @this, int?value) => @this.SetValueSafe(BottomProperty, value);
コード例 #5
0
ファイル: Absolute.cs プロジェクト: tig/CsConsoleFormat
 public static void SetRight([NotNull] BlockElement @this, int?value) => @this.SetValueSafe(RightProperty, value);
コード例 #6
0
ファイル: Absolute.cs プロジェクト: tig/CsConsoleFormat
 public static void SetTop([NotNull] BlockElement @this, int?value) => @this.SetValueSafe(TopProperty, value);