Ejemplo n.º 1
0
 public virtual bool op(android.graphics.Region arg0, android.graphics.Region.Op arg1)
 {
     global::MonoJavaBridge.JNIEnv @__env = global::MonoJavaBridge.JNIEnv.ThreadEnv;
     if (!IsClrObject)
     {
         return(@__env.CallBooleanMethod(this.JvmHandle, global::android.graphics.Region._op3774, global::MonoJavaBridge.JavaBridge.ConvertToValue(arg0), global::MonoJavaBridge.JavaBridge.ConvertToValue(arg1)));
     }
     else
     {
         return(@__env.CallNonVirtualBooleanMethod(this.JvmHandle, global::android.graphics.Region.staticClass, global::android.graphics.Region._op3774, global::MonoJavaBridge.JavaBridge.ConvertToValue(arg0), global::MonoJavaBridge.JavaBridge.ConvertToValue(arg1)));
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Set this region to the result of performing the Op on the specified
 /// regions.
 /// </summary>
 /// <remarks>
 /// Set this region to the result of performing the Op on the specified
 /// regions. Return true if the result is not empty.
 /// </remarks>
 public virtual bool op(android.graphics.Region region1, android.graphics.Region region2
                        , android.graphics.Region.Op op_1)
 {
     return(nativeOp(mNativeRegion, region1.mNativeRegion, region2.mNativeRegion, (int
                                                                                   )op_1));
 }
Ejemplo n.º 3
0
 /// <summary>Perform the specified Op on this region and the specified region.</summary>
 /// <remarks>
 /// Perform the specified Op on this region and the specified region. Return
 /// true if the result of the op is not empty.
 /// </remarks>
 public virtual bool op(android.graphics.Region region, android.graphics.Region.Op
                        op_1)
 {
     return(op(this, region, op_1));
 }
Ejemplo n.º 4
0
 /// <summary>Perform the specified Op on this region and the specified rect.</summary>
 /// <remarks>
 /// Perform the specified Op on this region and the specified rect. Return
 /// true if the result of the op is not empty.
 /// </remarks>
 public virtual bool op(int left, int top, int right, int bottom, android.graphics.Region
                        .Op op_1)
 {
     return(nativeOp(mNativeRegion, left, top, right, bottom, (int)op_1));
 }
Ejemplo n.º 5
0
 /// <summary>Perform the specified Op on this region and the specified rect.</summary>
 /// <remarks>
 /// Perform the specified Op on this region and the specified rect. Return
 /// true if the result of the op is not empty.
 /// </remarks>
 public virtual bool op(android.graphics.Rect r, android.graphics.Region.Op op_1)
 {
     return(nativeOp(mNativeRegion, r.left, r.top, r.right, r.bottom, (int)op_1));
 }
Ejemplo n.º 6
0
 public override bool clipRegion(android.graphics.Region region, android.graphics.Region
                                 .Op op)
 {
     throw new System.NotImplementedException();
 }
Ejemplo n.º 7
0
 public override bool clipRect(float left, float top, float right, float bottom, android.graphics.Region
                               .Op op)
 {
     throw new System.NotImplementedException();
 }