Share via


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

Windows Media Player SDK banner art

Previous Next

AxWindowsMediaPlayer.MediaCollectionAttributeStringChanged Event (VB and C#)

The MediaCollectionAttributeStringChanged event occurs when an attribute value in the library is changed.

[Visual Basic]
Private Sub player_MediaCollectionAttributeStringChanged(
  sender As Object,
  e As _WMPOCXEvents_MediaCollectionAttributeStringChangedEvent
) Handles player.MediaCollectionAttributeStringChanged

[C#]
private void player_MediaCollectionAttributeStringChanged(
  object sender,
  _WMPOCXEvents_MediaCollectionAttributeStringChangedEvent e
)

Event Data

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

Property Description
bstrAttribName System.String

Specifies the name of the attribute. For information about the attributes supported by Windows Media Player, see the Attribute Reference.

bstrOldAttribVal System.String

Specifies the old value of the attribute.

bstrNewAttribVal System.String

Specifies the new value of the attribute.

Remarks

When a user modifies library metadata, the media collection is updated and this event fires for each attribute changed.

Requirements

Version: Windows Media Player 9 Series or later

Namespace: AxWMPLib

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

See Also

Previous Next