次の方法で共有


SlideShowSettings.LoopUntilStopped プロパティ (PowerPoint)

Determines whether specified slide show loops continuously until the user presses ESC. 値の取得と設定が可能です。

構文

expressionLoopUntilStopped

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

注釈

LoopUntilStopped プロパティの値には、以下の msotristate クラス の定数のいずれかを指定できます。

定数 説明
msoFalse 指定したスライド ショーを繰り返し実行しません。
msoTrue The specified slide show loops continuously until the user presses ESC.

次の使用例は、作業中のプレゼンテーションのスライド ショーを開始し、設定されたタイミングで自動的にスライドを切り替え、ユーザーが Esc キーを押すまで作業中のプレゼンテーションを繰り返し実行します。

With ActivePresentation.SlideShowSettings

    .AdvanceMode = ppSlideShowUseSlideTimings

    .LoopUntilStopped = msoTrue

    .Run

End With

関連項目

SlideShowSettings オブジェクト

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

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