Which class in Aspose.Words is suitable for inserting data in microsoft word?

Such as inserting data into microsoft word “Text Form Field Options”, “Check Box Form Field Options”, etc. Thank you.

Hello

Thanks for your request. In case of using of Form Fields you can try using the code below to fill them with data.

Document doc = new Document("C:\\Temp\\in.doc");
// Get collection of FormField in the docuemnt
FormFieldCollection formFields = doc.Range.FormFields;
// Set TextInput Value
formFields["Text1"].SetTextInputValue("Test");
// Set CheckBox Checked
formFields["Check1"].Checked = true;
doc.Save("C:\\Temp\\out.doc");

Hope this helps.
Best regards,