Property Color
Color
Gets the color of the pen used to draw outlines.
public Color32 Color { get; }
Property Value
Examples
var pen = new Pen(new Color32(0, 255, 0), 2);
byte green = pen.Color.G; // 255
Gets the color of the pen used to draw outlines.
public Color32 Color { get; }
var pen = new Pen(new Color32(0, 255, 0), 2);
byte green = pen.Color.G; // 255