SetPosition() public method

public SetPosition ( float x, float y ) : void
x float
y float
return void
Example #1
0
 static public int SetPosition(IntPtr l)
 {
     try {
         FairyGUI.Utils.HtmlLink self = (FairyGUI.Utils.HtmlLink)checkSelf(l);
         System.Single           a1;
         checkType(l, 2, out a1);
         System.Single a2;
         checkType(l, 3, out a2);
         self.SetPosition(a1, a2);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }