I\'m developing a WinForm Printing application for our company.
When the document is printed, I need to take the System.Drawing.Color property of each C
System.Drawing.Color
Use the SolidBrush class:
using (SolidBrush brush = new SolidBrush(yourColor)) { // ... }