Share via


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

Windows Media Player SDK banner art

Previous Next

AxWindowsMediaPlayer.PositionChange Event (VB and C#)

The PositionChange event occurs when the current playback position within the media item has been changed.

[Visual Basic]
Private Sub player_PositionChange(
  sender As Object,
  e As _WMPOCXEvents_PositionChangeEvent
) Handles player.PositionChange

[C#]
private void player_PositionChange(
  object sender,
  _WMPOCXEvents_PositionChangeEvent e
)

Event Data

The handler associated with this event is of type AxWMPLib._WMPOCXEvents_PositionChangeEventHandler. This handler receives an argument of type AxWMPLib._WMPOCXEvents_PositionChangeEvent, which contains the following properties related to this event.

Property Description
oldPosition System.Double

Specifies the old position.

newPosition System.Double

Specifies the new position.

Remarks

This event is not raised routinely during playback. It only occurs when something actively changes the current position of the playing media item, such as when the user moves the seek handle or when code is executed that specifies a value for IWMPControls.currentPosition.

Requirements

Version: Windows Media Player 9 Series or later

Namespace: AxWMPLib

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

See Also

Previous Next