The time, in milliseconds, between keystrokes to continue a word when doing a keystroke search.

Usage

Set_Property(OLECtrlEntID, "OLE.KeystrokeFindTime", Value)

Values

Any position integer no smaller than 10

Default: 1000

Remarks

The KeystrokeFindTime property establishes how long the user has between keystrokes to continue a word when attempting to jump to an item in the tree using keystrokes. The default is 1000 milliseconds, or 1 second. For example, if a user wants to find the first item that begins with "he", then she must type the E key no more than 1 second after typing the H key. Otherwise, the second key is considered the beginning of a new word. This property can be used to give users more or less time as you see fit.

Example

// Give users 2 seconds between keystrokes to continue a word
Set_Property(@Window:".OLE_TREE", "OLE.KeystrokeFindTime", 2000)

See Also

KeystrokeFindEnabled

  • No labels