Application.Options プロパティ (PowerPoint)

Microsoft PowerPoint のアプリケーション オプションを表す Options オブジェクトを取得します。

構文

expression. Options

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

戻り値

オプション

オプション オブジェクトを取得するのにには、 オプション のプロパティを使用します。 次の使用例は、PowerPoint の 3 つのオプションを設定します。

Sub TogglePasteOptionsButton()

    With Application.Options

        If .DisplayPasteOptions = False Then

            .DisplayPasteOptions = True

        End If

    End With

End Sub

関連項目

Application オブジェクト

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

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