SpellingOptions.IgnoreFileNames 属性 (Excel)
False 指示 Microsoft Excel 检查 Internet 和文件地址; True 指示 Excel 在使用拼写检查器时忽略 Internet 和文件地址。 读/写 Boolean。
语法
表达式。IgnoreFileNames
表达 一个代表 SpellingOptions 对象的变量。
示例
在此示例中,Excel 确定用于检查 Internet 和文件地址拼写的设置,并通知用户。
Sub SpellingOptionsCheck()
If Application.SpellingOptions.IgnoreFileNames = True Then
MsgBox "Spelling options for checking Internet and file addresses is disabled."
Else
MsgBox "Spelling options for checking Internet and file addresses is enabled."
End If
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。