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