Beispiel #1
0
 public Configurer Width(Value width)
 {
     _cell.MinWidthValue = width;
     _cell.PrefWidthValue = width;
     _cell.MaxWidthValue = width;
     return this;
 }
Beispiel #2
0
 public Configurer PrefHeight(Value height)
 {
     _cell.PrefHeightValue = height;
     return this;
 }
Beispiel #3
0
 public Configurer SpaceLeft(Value left)
 {
     _cell.SpaceLeftValue = left;
     return this;
 }
Beispiel #4
0
 public Table Pad(Value pad)
 {
     _layout.Pad(pad);
     return this;
 }
Beispiel #5
0
 public Configurer Size(Value width, Value height)
 {
     _cell.MinWidthValue = width;
     _cell.MinHeightValue = height;
     _cell.PrefWidthValue = width;
     _cell.PrefHeightValue = height;
     _cell.MaxWidthValue = width;
     _cell.MaxHeightValue = height;
     return this;
 }
Beispiel #6
0
 public Configurer Space(Value top, Value left, Value bottom, Value right)
 {
     _cell.SpaceTopValue = top;
     _cell.SpaceLeftValue = left;
     _cell.SpaceBottomValue = bottom;
     _cell.SpaceRightValue = right;
     return this;
 }
Beispiel #7
0
 public Configurer MinWidth(Value width)
 {
     _cell.MinWidthValue = width;
     return this;
 }
Beispiel #8
0
 public Configurer PrefWidth(Value width)
 {
     _cell.PrefWidthValue = width;
     return this;
 }
Beispiel #9
0
 public Configurer MinSize(Value size)
 {
     _cell.MinWidthValue = size;
     _cell.MinHeightValue = size;
     return this;
 }
Beispiel #10
0
 public Configurer MinSize(Value width, Value height)
 {
     _cell.MinWidthValue = width;
     _cell.MinHeightValue = height;
     return this;
 }
Beispiel #11
0
 public Configurer MinHeight(Value height)
 {
     _cell.MinHeightValue = height;
     return this;
 }
Beispiel #12
0
 public Configurer MaxSize(Value size)
 {
     _cell.MaxWidthValue = size;
     _cell.MaxHeightValue = size;
     return this;
 }
Beispiel #13
0
 public Configurer Height(Value height)
 {
     _cell.MinHeightValue = height;
     _cell.PrefHeightValue = height;
     _cell.MaxHeightValue = height;
     return this;
 }
Beispiel #14
0
 public Configurer PrefSize(Value size)
 {
     _cell.PrefWidthValue = size;
     _cell.PrefHeightValue = size;
     return this;
 }
Beispiel #15
0
 public Configurer Pad(Value pad)
 {
     _cell.PadTopValue = pad;
     _cell.PadLeftValue = pad;
     _cell.PadBottomValue = pad;
     _cell.PadRightValue = pad;
     return this;
 }
Beispiel #16
0
 public Configurer PrefSize(Value width, Value height)
 {
     _cell.PrefWidthValue = width;
     _cell.PrefHeightValue = height;
     return this;
 }
Beispiel #17
0
 public Configurer Pad(Value top, Value left, Value bottom, Value right)
 {
     _cell.PadTopValue = top;
     _cell.PadLeftValue = left;
     _cell.PadBottomValue = bottom;
     _cell.PadRightValue = right;
     return this;
 }
Beispiel #18
0
 public Configurer Size(Value size)
 {
     _cell.MinWidthValue = size;
     _cell.MinHeightValue = size;
     _cell.PrefWidthValue = size;
     _cell.PrefHeightValue = size;
     _cell.MaxWidthValue = size;
     _cell.MaxHeightValue = size;
     return this;
 }
Beispiel #19
0
 public Configurer PadBottom(Value bottom)
 {
     _cell.PadBottomValue = bottom;
     return this;
 }
Beispiel #20
0
 public Configurer Space(Value space)
 {
     _cell.SpaceTopValue = space;
     _cell.SpaceLeftValue = space;
     _cell.SpaceBottomValue = space;
     _cell.SpaceRightValue = space;
     return this;
 }
Beispiel #21
0
 public Configurer PadLeft(Value left)
 {
     _cell.PadLeftValue = left;
     return this;
 }
Beispiel #22
0
 public Configurer SpaceBottom(Value bottom)
 {
     _cell.SpaceBottomValue = bottom;
     return this;
 }
Beispiel #23
0
 public Configurer PadRight(Value right)
 {
     _cell.PadRightValue = right;
     return this;
 }
Beispiel #24
0
 public Configurer SpaceRight(Value right)
 {
     _cell.SpaceRightValue = right;
     return this;
 }
Beispiel #25
0
 public Configurer PadTop(Value top)
 {
     _cell.PadTopValue = top;
     return this;
 }
Beispiel #26
0
 public Table Pad(Value top, Value left, Value bottom, Value right)
 {
     _layout.Pad(top, left, bottom, right);
     return this;
 }
Beispiel #27
0
 public Configurer SpaceTop(Value top)
 {
     _cell.SpaceTopValue = top;
     return this;
 }