+ShortCutToText is the counterpart to the TextToShortCut routine, and +converts the numeric TShortCut value in ShortCut its textual representation. +
++ShortCut is the Word value with the modifier keys and the +key code OR'd together. The high-order byte contains the Shift/Ctrl/Alt/Meta +modifier(s) for the shortcut. The low-order-byte contains the virtual key code +for the shortcut. +
++The return value contains localized versions of text for the modifiers and +the key cap used in the shortcut. For example: +
+
+Ctrl+V
+Ctrl+Alt+Del
+^V
+Shift+F9
+Alt+G
+Meta+Q
+
++Use ShortCutToTextRaw to get the text for a shortcut without localization. +
++ShortCutToTextRaw is similar to ShortCutToText, but does not use +localization for the modifiers or key caps found in the shortcut. +
++See ShortCutToText for more information. +
++Use TextToShortCutRaw to create a shortcut for text which does not +use localization. +
++TextToShortCut is a TShortcut function used to convert +the string representation for a shortcut (or accelerator) to a TShortCut +instance. +
++ShortCutText contains the text which represents a key or a key +combination used as a shortcut in an application. It can contain optional key +modifier(s) as well as a key caption. For example: +
+
+Ctrl+V
+Ctrl+Alt+Del
+^V
+Shift+F9
+Alt+G
+Meta+Q
+
++Recognized key modifiers include: +
+
+Alt
+Ctrl or ^
+Meta
+Shift
+
++Recognized key captions include the standard key caps for your keyboard and the +localized versions of the following: +
++The return value is a TShortCut instance with the numeric value used to +represent both the Shift/Ctrl/Alt modifier and the key code for the shortcut. +It consists of the Shift and Key values OR'd together. +
++Use TextToShortCutRaw to convert a non-localized string to it TShortCut +equivalent. +
++Use ShortCutToText to reverse the process. +
++TextToShortCutRaw is similar to TextToShortCut, but does +not handle or use localized versions of modifiers or key caps in +ShortCutText. +
++See TextToShortCut for more information. +
++Use ShortCutToTextRaw to reverse the process. +
+