iTextSharp.text.pdf.PdfAcroForm.AddCheckBox C# (CSharp) Method

AddCheckBox() public method

public AddCheckBox ( string name, string value, bool status, float llx, float lly, float urx, float ury ) : PdfFormField
name string
value string
status bool
llx float
lly float
urx float
ury float
return PdfFormField
        public PdfFormField AddCheckBox(string name, string value, bool status, float llx, float lly, float urx, float ury)
        {
            PdfFormField field = PdfFormField.CreateCheckBox(writer);
            SetCheckBoxParams(field, name, value, status, llx, lly, urx, ury);
            DrawCheckBoxAppearences(field, value, llx, lly, urx, ury);
            AddFormField(field);
            return field;
        }