PaintFlagsDrawFilter Constructors

Definition

Overloads

PaintFlagsDrawFilter(PaintFlags, PaintFlags)

Subclass of DrawFilter that affects every paint by first clearing the specified clearBits in the paint's flags, and then setting the specified setBits in the paint's flags.

PaintFlagsDrawFilter(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

PaintFlagsDrawFilter(PaintFlags, PaintFlags)

Subclass of DrawFilter that affects every paint by first clearing the specified clearBits in the paint's flags, and then setting the specified setBits in the paint's flags.

[Android.Runtime.Register(".ctor", "(II)V", "")]
public PaintFlagsDrawFilter (Android.Graphics.PaintFlags clearBits, Android.Graphics.PaintFlags setBits);
[<Android.Runtime.Register(".ctor", "(II)V", "")>]
new Android.Graphics.PaintFlagsDrawFilter : Android.Graphics.PaintFlags * Android.Graphics.PaintFlags -> Android.Graphics.PaintFlagsDrawFilter

Parameters

clearBits
PaintFlags

These bits will be cleared in the paint's flags

setBits
PaintFlags

These bits will be set in the paint's flags

Attributes

Remarks

Subclass of DrawFilter that affects every paint by first clearing the specified clearBits in the paint's flags, and then setting the specified setBits in the paint's flags.

Java documentation for android.graphics.PaintFlagsDrawFilter.PaintFlagsDrawFilter(int, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

PaintFlagsDrawFilter(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected PaintFlagsDrawFilter (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Graphics.PaintFlagsDrawFilter : nativeint * Android.Runtime.JniHandleOwnership -> Android.Graphics.PaintFlagsDrawFilter

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to