Property Color
Color
Gets the fill color of this brush.
public Color32 Color { get; }
Property Value
Examples
var brush = new Brush(new Color32(255, 0, 0));
byte red = brush.Color.R; // 255
Gets the fill color of this brush.
public Color32 Color { get; }
var brush = new Brush(new Color32(255, 0, 0));
byte red = brush.Color.R; // 255