Hi,
I used BorderCornerStyle enum and setHCornerRadius(value) api for setting rounded corners to TextBoxField , CheckBoxField and ComboBoxField. But , I am not able to see any result. Can you please suggest any way to have rounded corners to both TextBoxField , CheckBoxField and ComboBoxField?
TextBoxField textfield=new TextBoxField(page, new Rectangle(60, 600, 110, 616));
textfield.setBorder(new Border(textfield));
textfield.getBorder().setWidth(1);
textfield.getBorder().setStyle(BorderCornerStyle.Round);
textfield.getBorder().setHCornerRadius(10);