Android.Graphics.Paint.Alpha Property
Helper to getColor() that just returns the color's alpha value.

Syntax

[get: Android.Runtime.Register("getAlpha", "()I", "GetGetAlphaHandler")]
[set: Android.Runtime.Register("setAlpha", "(I)V", "GetSetAlpha_IHandler")]
public virtual int Alpha { get; set; }

Value

Documentation for this section has not yet been entered.

Remarks

Get method documentation [Android Documentation]

Helper to getColor() that just returns the color's alpha value. This is the same as calling getColor() >>> 24. It always returns a value between 0 (completely transparent) and 255 (completely opaque).

Set method documentation [Android Documentation]

Helper to setColor(), that only assigns the color's alpha value, leaving its r,g,b values unchanged. Results are undefined if the alpha value is outside of the range [0..255]

Requirements

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