有没有办法在 Word 2010 中检测事件拼写检查开始和拼写检查完成?
谢谢!
您可以使用以下用于 VSTO 的 VB.NET 代码创建自己的按钮来执行此操作。
Public Sub SpellCheckButton(ByVal Control As Office.IRibbonControl)
Try
Dim result As String = "Spelled incorrectly."
If Me.Application.CheckSpelling(Me.Range.Text) = True Then
result = "Spelled correctly."
End If
MessageBox.Show(result)
Catch ex As Exception
MessageBox.Show(ex.ToString())
End Try
End Sub