In the latest version, I created the form using the following code, setting RGB(255,255,255) via CreateTextPr’s SetShd
However, the default color background will appear
var oDocument = Api.GetDocument();
var oCheckBoxForm = Api.CreateCheckBoxForm({"key": "Marital status", "tip": "Specify your marital status", "required": true, "placeholder": "Marital status", "radio": true});
var oTextPr = Api.CreateTextPr();
oTextPr.SetShd("clear", 255, 255, 255);
oCheckBoxForm.SetTextPr(oTextPr);
Another problem is that the created form cannot be selected