PdfRpt.Core.Helper.VectorImages.DrawCheckmark C# (CSharp) 메소드

DrawCheckmark() 공개 정적인 메소드

A vector checkmark image's definition
public static DrawCheckmark ( Rectangle position, PdfContentByte contentByte, System color ) : Image
position iTextSharp.text.Rectangle position of the drawing
contentByte iTextSharp.text.pdf.PdfContentByte drawing canvas
color System fill color
리턴 iTextSharp.text.Image
        public static Image DrawCheckmark(Rectangle position, PdfContentByte contentByte, System.Drawing.Color color)
        {
            var img = CheckmarkImage(contentByte, color);
            DrawCheckmarkImageAtPosition(img, position);
            return img;
        }