Propiedad Application.DisplayInsertOptions (Excel)

True si se debe mostrar el botón Opciones de inserción. Boolean de lectura y escritura.

Sintaxis

expresión. DisplayInsertOptions

expresión Variable que representa un objeto Application.

Ejemplo:

En este ejemplo, Microsoft Excel notifica al usuario el estado de mostrar el botón Insertar opciones .

Sub SettingToolTip() 
 
 ' Notify the user of the ability to display the Insert Options button. 
 If Application.DisplayInsertOptions = True Then 
 MsgBox "The ability to display the Insert Options button is on." 
 Else 
 MsgBox "The ability to display the Insert Options button is off." 
 End If 
 
End Sub

Soporte técnico y comentarios

¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.