ApiExamples.ExDocumentBuilder.InsertCheckBoxEmptyName C# (CSharp) Method

InsertCheckBoxEmptyName() private method

private InsertCheckBoxEmptyName ( ) : void
return void
        public void InsertCheckBoxEmptyName()
        {
            Document doc = new Document();

            DocumentBuilder builder = new DocumentBuilder(doc);

            //Assert that empty string name working correctly
            builder.InsertCheckBox("", true, false, 1);
            builder.InsertCheckBox(string.Empty, false, 1);
        }
ExDocumentBuilder