Example #1
0
 public PaddingAttribute(float left = 0, float right = 0, float top = 0, float bottom = 0)
 {
     Padding = new SurroundSpacing
     {
         Left   = left,
         Right  = right,
         Top    = top,
         Bottom = bottom
     };
 }
Example #2
0
 public MarginAttribute(float left = 0, float right = 0, float top = 0, float bottom = 0)
 {
     Margin = new SurroundSpacing
     {
         Left   = left,
         Right  = right,
         Top    = top,
         Bottom = bottom
     };
 }