Windows Media Player 11 SDK AxWindowsMediaPlayer.KeyPress Event (VB and C#) 

Windows Media Player SDK banner art

Previous Next

AxWindowsMediaPlayer.KeyPress Event (VB and C#)

The KeyPress event occurs when a key is pressed and released.

[Visual Basic]
Private Sub player_KeyPressEvent(
  sender As Object,
  e As _WMPOCXEvents_KeyPressEvent
) Handles player.KeyPressEvent

[C#]
private void player_KeyPressEvent(
  object sender,
  _WMPOCXEvents_KeyPressEvent e
)

Event Data

The handler associated with this event is of type AxWMPLib._WMPOCXEvents_KeyPressEventHandler. This handler receives an argument of type AxWMPLib._WMPOCXEvents_KeyPressEvent, which contains the following property related to this event.

Property Description
nKeyAscii System.Int16

Specifies the standard numeric ANSI code for the character.

Remarks

This event occurs when the keystroke results in any printable keyboard character, the CTRL key combined with a character from the standard alphabet or one of a few special characters, and the ENTER or BACKSPACE key.

Requirements

Version: Windows Media Player 9 Series or later

Namespace: AxWMPLib

Assembly: AxInterop.WMPLib.dll (automatically generated by Visual Studio)

See Also

Previous Next