Binarysharp.MemoryManagement.Windows.WindowCore.MapVirtualKey C# (CSharp) Méthode

MapVirtualKey() public static méthode

Translates (maps) a virtual-key code into a scan code or character value, or translates a scan code into a virtual-key code. To specify a handle to the keyboard layout to use for translating the specified code, use the MapVirtualKeyEx function.
public static MapVirtualKey ( Keys key, TranslationTypes translation ) : uint
key Keys /// The virtual key code for a key. How this value is interpreted depends on the value of the uMapType parameter. ///
translation TranslationTypes /// The translation to be performed. The value of this parameter depends on the value of the uCode parameter. ///
Résultat uint
        public static uint MapVirtualKey(Keys key, TranslationTypes translation)
        {
            return MapVirtualKey((uint)key, translation);
        }

Same methods

WindowCore::MapVirtualKey ( uint key, TranslationTypes translation ) : uint