Rank: Newbie Groups: Member
Joined: 9/1/2022 Posts: 3
|
Can you tell me how to add ACMCheckbox in pdf? I have tried the below code but not able to see the checkbox in pdf. AcmContent container = new AcmContent(); AcmCheckBox checkbox= new AcmCheckBox(); checkbox.Style.Width = 2f; checkbox.Style.Height = 0.2f; container.Children.Add(tbLastName);
Thanks in advance.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi,
Your code looks correct. Make sure:
1. You set AcmCheckBox's Name property; 2. You add checkbox into your container;
If you still have problem please try to isolate the problem into a small test program and post the full source of the test program.
Thanks!
|