Application.DisplayPasteOptions 属性 (Excel)
如果可以显示“粘贴选项”按钮,则该属性值为 True。 读/写 Boolean。
语法
表达式。DisplayPasteOptions
expression:表示 Application 对象的变量。
备注
这是一个 Microsoft Office 范围的设置。 该设置影响所有其他的 Microsoft Office 应用程序。 如果将 DisplayPasteOptions 属性设置为 True,则会关闭 Microsoft Excel 中的“自动填充选项”按钮。 “自动填充选项”按钮只存在于 Excel 中,而“粘贴选项”按钮存在于所有其他的 Microsoft Office 应用程序中。
示例
在此示例中,Microsoft Excel 通知用户显示 “粘贴选项” 按钮的状态。
Sub CheckDisplayFeature()
' Check if the options button can be displayed.
If Application.DisplayPasteOptions = True Then
MsgBox "The ability to display the Paste Options button is on."
Else
MsgBox "The ability to display the Paste Options button is off."
End If
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。