Alsing.Drawing.GDI.GDIPen.GDIPen C# (CSharp) Метод

GDIPen() публичный Метод

public GDIPen ( Color color, int width ) : System
color Color
width int
Результат System
        public GDIPen(Color color, int width)
        {
            hPen = NativeMethods.CreatePen(0, width, NativeMethods.ColorToInt(color));
            Create();
        }