In VCL (Delphi 2010) I used this function to check whether control key is pressed:
function IsControlKeyPressed: Boolean;
begin
Result := GetKeyState(VK_CONTROL) < 0;
end;
GetKeyState is function in windows library that I do not want to include it into my project.
How can I check if control or shift key is pressed in XE3 for firemonkey application?