RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TShortCutList Class

TShortCutList manages an array of keyboard shortcuts.

Pascal
TShortCutList = class(TStringList);
C++
class TShortCutList : public TStringList;

TShortCutList is a specialized list for storing TShortCut values. TShortCutList is the type of the SecondaryShortCuts property. 

TShortCutList is a descendant of TStringList, which manages a collection of strings. As such, TShortCutList adds, deletes, and searches for shortcuts using their text representation. (You can convert between a shortcut and its text representation using the TextToShortCut and SHortCutToText functions). TShortCutList stores the shortcut that corresponds to a text representation as the value of the Objects property for that string. Do not change the value of the Objects property, or the short cut list will not operate correctly. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!