Exemplo n.º 1
0
 public TElement SetHeight(string CodedHeight)
 {
     CheckCanModify();
     height = DecodeCodedSize(CodedHeight);
     return((TElement)this);
 }
Exemplo n.º 2
0
 public TElement SetWidth(string CodedWidth)
 {
     CheckCanModify();
     width = DecodeCodedSize(CodedWidth);
     return((TElement)this);
 }
Exemplo n.º 3
0
 public TElement SetHeight(UISize Height)
 {
     CheckCanModify();
     height = Height;
     return((TElement)this);
 }
Exemplo n.º 4
0
 public TElement SetWidth(UISize Width)
 {
     CheckCanModify();
     width = Width;
     return((TElement)this);
 }