Vcl.RibbonActnCtrls.TKeyTipHandled

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TKeyTipHandled = (ktNone, ktPartial, ktFull);

C++

enum DECLSPEC_DENUM TKeyTipHandled : unsigned char { ktNone, ktPartial, ktFull };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.RibbonActnCtrls.pas
Vcl.RibbonActnCtrls.hpp
Vcl.RibbonActnCtrls Vcl.RibbonActnCtrls

Description

Validates that the command's KeyTip matches the current user input.

Use TKeyTipHandled to validate if a command's KeyTip matches the current user input. TKeyTipHandled can have one of the following values:

Value Meaning

ktNone

The current KeyTip didn't match the command's KeyTip.

ktPartial

The current KeyTip matches the first character of the command's KeyTip.

ktFull

The current KeyTip is a full match for the command. The source KeyTip could be either one-character or two-character long.


See Also