Application.DisplayInsertOptions プロパティ (Excel)

[挿入オプション] ボタンが表示されている場合は True を指定します。 値の取得と設定が可能なブール型 (Boolean) の値です。

構文

DisplayInsertOptions

expressionApplication オブジェクトを 表す変数。

この例では、Microsoft Excel は [挿入オプション] ボタンを表示する状態をユーザーに通知します。

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

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。