TextView.PaintFlags Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the flags on the Paint being used to display the text. -or- Sets flags on the Paint being used to display the text and reflows the text if they are different from the old flags.
public virtual Android.Graphics.PaintFlags PaintFlags { [Android.Runtime.Register("getPaintFlags", "()I", "GetGetPaintFlagsHandler")] get; [Android.Runtime.Register("setPaintFlags", "(I)V", "GetSetPaintFlags_IHandler")] set; }
[<get: Android.Runtime.Register("getPaintFlags", "()I", "GetGetPaintFlagsHandler")>]
[<set: Android.Runtime.Register("setPaintFlags", "(I)V", "GetSetPaintFlags_IHandler")>]
member this.PaintFlags : Android.Graphics.PaintFlags with get, set
Property Value
The flags on the Paint being used to display the text.
- Attributes
Remarks
Property getter documentation:
Gets the flags on the Paint being used to display the text.
Java documentation for android.widget.TextView.getPaintFlags()
.
Property setter documentation:
Sets flags on the Paint being used to display the text and reflows the text if they are different from the old flags.
Java documentation for android.widget.TextView.setPaintFlags(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.