Skip to main content

Application.TransitionNavigKeys property

Table of contents
  1. Syntax
  2. Example

True if transition navigation keys are active. Read/write Boolean.

Syntax

expression.TransitionNavigKeys

expression A variable that represents an Application object.

Example

This example displays the current state of the Transition navigation keys option.

If Application.TransitionNavigKeys Then
    keyState = "On"
Else
    keyState = "Off"
End If
MsgBox "The Transition Navigation Keys option is " & keyState

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>