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