Esempio n. 1
0
 public SHRect(SHRect rect)
 {
     left   = rect.left;
     right  = rect.right;
     bottom = rect.bottom;
     top    = rect.top;
 }
Esempio n. 2
0
 public void MatchHoriz(SHRect source)
 {
     left  = source.left;
     right = source.right;
 }
Esempio n. 3
0
 public void MatchVert(SHRect source)
 {
     top    = source.top;
     bottom = source.bottom;
 }