Articles in this section
Category / Section

How to disable spellcheck for form field Textbox in WPF PDF Viewer?

5 mins read

In the WPF PDF Viewer, there is no direct support to disable the spellcheck for the form field textbox programmatically. To disable the spellcheck for the form field textbox in the PDF document. Load the document in PdfLoadedDocument and disable `SpellCheck` property for the form field textbox, save and load the PDF in PdfViewer.

Steps to disable spellcheck for Textbox in PDF

Step 1: Get the instance of the loaded document from the file path of a PDF:

C#

//Load a PDF into the PdfLoadedDocument object.
PdfLoadedDocument loadedDocument = new PdfLoadedDocument(filePath);

Step 2: Disable spellcheck:

  • Iterate the form fields elements using loaded document.
  • Then disable the `SpellCheck` property for PdfLoadedTextBoxField.

C#

foreach (PdfField field in loadedDocument.Form.Fields)
{
if(field is PdfLoadedTextBoxField)
{
PdfLoadedTextBoxField loadedTextBoxField = field as PdfLoadedTextBoxField;
loadedTextBoxField.SpellCheck = false;
}
}

Step 3: Save the modified document:

  • Save the modified loadedDocument in the memory stream.

C#

 //Save the modified pdfLoadedDocument in the memory stream.
MemoryStream stream = new MemoryStream();
stream.Position = 0;
loadedDocument.Save(stream);

Step 4: Load the modified document:

  • Load the modified MemoryStream document in the pdfviewercontrol.

C#

//Load the modified MemoryStream in the pdfviewercontrol.
pdfViewer.Load(stream);

View the Sample on GitHub

See also:

Conclusion

I hope you enjoyed learning about how to disable spellcheck for form field Textbox in PDF.

You can refer to our WPF PDF Viewer feature tour page to know about its other groundbreaking feature representations. You can also explore our WPF PDF Viewer documentation to understand how to present and manipulate data.

For current customers, you can check out our WPF components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WPF PDF Viewer and other WPF components.

If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied