SpellingChecked

Document.SpellingChecked property

RestituisceVERO se il documento è stato controllato dall’ortografia.

public bool SpellingChecked { get; set; }

Osservazioni

Per ricontrollare l’ortografia nel documento, impostare questa proprietà sufalso .

Esempi

Mostra come impostare la verifica ortografica o grammaticale.

Document doc = new Document();

// La stringa con errori di ortografia.
doc.FirstSection.Body.FirstParagraph.Runs.Add(new Run(doc, "The speeling in this documentz is all broked."));

 // Il controllo ortografico/grammaticale inizia se impostiamo le proprietà su false.
// Possiamo visualizzare tutti gli errori in Microsoft Word tramite Revisione -> Ortografia e ortografia Grammatica.
// Tieni presente che Microsoft Word non avvia automaticamente il controllo grammaticale/ortografico per i formati di documenti DOC e RTF.
doc.SpellingChecked = checkSpellingGrammar;
doc.GrammarChecked = checkSpellingGrammar;

doc.Save(ArtifactsDir + "Document.SpellingOrGrammar.docx");

Guarda anche