CreateCheckBoxForm
Creates a checkbox / radio button with the specified checkbox / radio button properties.
Parameters:
Name |
Type |
Description |
oFormPr |
CheckBoxFormPr
|
Checkbox / radio button properties. |
Returns:
- Type
-
ApiCheckBoxForm
Example
Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oCheckBoxForm = Api.CreateCheckBoxForm({"key": "Marital status", "tip": "Specify your marital status", "required": true, "placeholder": "Marital status", "radio": true});
var oParagraph = oDocument.GetElement(0);
oParagraph.AddElement(oCheckBoxForm);
oParagraph.AddText(" Married");
oParagraph.AddLineBreak();
oCheckBoxForm = Api.CreateCheckBoxForm({"key": "Marital status", "tip": "Specify your marital status", "required": true, "placeholder": "Marital status", "radio": true});
oParagraph.AddElement(oCheckBoxForm);
oParagraph.AddText(" Single");
builder.SaveFile("docxf", "CreateCheckBoxForm.docxf");
builder.CloseFile();
Resulting document