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

Windows Media Player SDK banner art

Previous Next

AxWindowsMediaPlayer.ModeChange Event (VB and C#)

The ModeChange event occurs when a mode of Windows Media Player is changed.

[Visual Basic]
Private Sub player_ModeChange(
  sender As Object,
  e As _WMPOCXEvents_ModeChangeEvent
) Handles player.ModeChange

[C#]
private void player_ModeChange(
  object sender,
  _WMPOCXEvents_ModeChangeEvent e
)

Event Data

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

Property Description
modeName System.String

Indicates the mode that was changed. For possible values, see Remarks.

newValue System.Boolean

Indicates the new state of the specified mode.

Remarks

The following table shows the possible values for the modeName property.

String Description
shuffle Tracks are played in random order.
loop The entire sequence of tracks is played repeatedly.

Requirements

Version: Windows Media Player 9 Series or later

Namespace: AxWMPLib

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

See Also

Previous Next