Application.AutoFormatAsYouTypeReplaceHyperlinks 属性 (Excel)
如果 Microsoft Excel 按照键入的内容自动设置超链接的格式,则该值为 True(默认)。 如果 Excel 不按照键入的内容自动设置超链接的格式,则该值为 False。 读/写 Boolean。
语法
表达式。AutoFormatAsYouTypeReplaceHyperlinks
expression:表示 Application 对象的变量。
示例
在此示例中,Microsoft Excel 确定是否启用了在超链接键入时自动设置超链接格式的功能,并通知用户。
Sub CheckHyperlinks()
' Determine if automatic formatting is enabled and notify user.
If Application.AutoFormatAsYouTypeReplaceHyperlinks = True Then
MsgBox "Automatic formatting for typing in hyperlinks is enabled."
Else
MsgBox "Automatic formatting for typing in hyperlinks is not enabled."
End If
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。