INTERNAL_CALL_Add() private method

private INTERNAL_CALL_Add ( RectOffset self, Rect &rect, Rect &value ) : void
self RectOffset
rect Rect
value Rect
return void
Exemplo n.º 1
0
        public Rect Add(Rect rect)
        {
            Rect result;

            RectOffset.INTERNAL_CALL_Add(this, ref rect, out result);
            return(result);
        }
Exemplo n.º 2
0
 public Rect Add(Rect rect)
 {
     return(RectOffset.INTERNAL_CALL_Add(this, ref rect));
 }