Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
.gif)
| 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
- AxWindowsMediaPlayer Object (VB and C#)
- IWMPSettings.getMode (VB and C#)
- IWMPSettings.setMode (VB and C#)
| Previous | Next |