HOW TO:在文件中拼字檢查
若要檢查文件中的拼字,請使用 CheckSpelling 方法。 這個方法會傳回布林 (Boolean) 值,指出所提供的參數是否使用正確的拼寫。
**適用於:**本主題中的資訊適用於 Word 2007 和 Word 2010 的文件層級專案和應用程式層級專案。如需詳細資訊,請參閱依 Office 應用程式和專案類型提供的功能。
若要檢查拼字並將結果顯示在訊息方塊中
呼叫 CheckSpelling 方法,並將文字的範圍傳遞給該方法,以檢查拼字錯誤。 若要使用這個程式碼範例,請從專案中的 ThisDocument 或 ThisAddIn 類別中執行。
Dim result As String = "Spelled incorrectly." If Me.Application.CheckSpelling(Me.Range.Text) = True Then result = "Spelled correctly." End If MessageBox.Show(result)
string result = "Spelled incorrectly."; object startLocation = this.Content.Start; object endLocation = this.Content.End; bool spellCheck = this.Application.CheckSpelling( this.Range(ref startLocation, ref endLocation).Text); if (spellCheck == true) { result = "Spelled correctly."; } MessageBox.Show(result);