Enum IGDIPlus.TGPHotkeyPrefix
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Revision as of 13:52, 26 October 2012
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabBasicPkg
Unit: IGDIPlus
Contents |
Syntax
Delphi:
type TGPHotkeyPrefix = (HotkeyPrefixNone, HotkeyPrefixShow, HotkeyPrefixHide);
C++ Builder:
enum TGPHotkeyPrefix {HotkeyPrefixNone, HotkeyPrefixShow, HotkeyPrefixHide};
Visual C++ (MFC):
enum CTGPHotkeyPrefix {HotkeyPrefixNone, HotkeyPrefixShow, HotkeyPrefixHide};
Summary
Specifies how to display hot keys.
Description
Defines an enumeration that specifies how to display hot keys. There are three options: do nothing, display hot keys underlined, and hide the hot key underlines.
Values
HotkeyPrefixNone | Specifies that no hot key processing occurs. |
HotkeyPrefixShow | Specifies that Unicode text is scanned for ampersands (&), which are interpreted as hot key markers in the same way as menu and dialog resources are processed in the Windows user interface. All pairs of ampersands are replaced by a single ampersand. All single ampersands are removed and the first character that follows the first single ampersand is displayed underlined. |
HotkeyPrefixHide | Specifies that Unicode text is scanned for ampersands (&), which are substituted and removed as in HotkeyPrefixShow but no underline is shown. This option can be used when accessibility hot key underlines are not required. |