Android.Graphics.Paint.Color Property
Return the paint's color.

Syntax

[get: Android.Runtime.Register("getColor", "()I", "GetGetColorHandler")]
[set: Android.Runtime.Register("setColor", "(I)V", "GetSetColor_IHandler")]
public virtual Color Color { get; set; }

Value

Documentation for this section has not yet been entered.

Remarks

Get method documentation [Android Documentation]

Return the paint's color. Note that the color is a 32bit value containing alpha as well as r,g,b. This 32bit value is not premultiplied, meaning that its alpha can be any value, regardless of the values of r,g,b. See the Color class for more details.

Set method documentation [Android Documentation]

Set the paint's color. Note that the color is an int containing alpha as well as r,g,b. This 32bit value is not premultiplied, meaning that its alpha can be any value, regardless of the values of r,g,b. See the Color class for more details.

Requirements

Namespace: Android.Graphics
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1