SetSize() public method

public SetSize ( int width, int height ) : void
width int
height int
return void
示例#1
0
 public void SetSize(int w, int h)
 {
     UI.UIBox box = uiElem as UI.UIBox;
     if (box == null)
     {
         return;
     }
     box.SetSize(w, h);
 }