NewTOAPIA.Drawing.GDI.GDIContext.CreatePen C# (CSharp) Method

CreatePen() public method

public CreatePen ( PenType aType, PenStyle aStyle, PenJoinStyle aJoinStyle, PenEndCap aEndCap, Colorref colorref, int width, System.Guid uniqueID ) : GDIPen
aType PenType
aStyle PenStyle
aJoinStyle PenJoinStyle
aEndCap PenEndCap
colorref NewTOAPIA.Graphics.Colorref
width int
uniqueID System.Guid
return GDIPen
        public virtual GDIPen CreatePen(PenType aType, PenStyle aStyle, PenJoinStyle aJoinStyle, PenEndCap aEndCap, Colorref colorref, int width, Guid uniqueID)
        {
            GDIPen aPen = new GDIPen(aType, aStyle, aJoinStyle, aEndCap, colorref, width, uniqueID);
            return aPen;
        }