Application.ErrorCheckingOptions 属性 (Excel)
返回 ErrorCheckingOptions 对象,该对象表示应用程序的错误检查选项。
语法
表达式。ErrorCheckingOptions
expression:表示 Application 对象的变量。
示例
在本示例中,TextDate 属性与 ErrorCheckingOptions 属性结合使用。 当用户选择包含日期中两位数年份的单元格时,将显示 “自动更正选项” 按钮。
Sub CheckTextDate()
' Enable Microsoft Excel to identify dates written as text.
Application.ErrorCheckingOptions.TextDate = True
Range("A1").Formula = "'April 23, 00"
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。