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