PdfRpt.Core.Helper.VectorImages.DrawCheckmark C# (CSharp) Method

DrawCheckmark() public static method

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
return 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;
        }