StringMap.MapChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the contents of the map change.
public:
virtual event MapChangedEventHandler<Platform::String ^, Platform::String ^> ^ MapChanged;
// Register
event_token MapChanged(MapChangedEventHandler<winrt::hstring, winrt::hstring const&> const& handler) const;
// Revoke with event_token
void MapChanged(event_token const* cookie) const;
// Revoke with event_revoker
StringMap::MapChanged_revoker MapChanged(auto_revoke_t, MapChangedEventHandler<winrt::hstring, winrt::hstring const&> const& handler) const;
public event MapChangedEventHandler<string,string> MapChanged;
function onMapChanged(eventArgs) { /* Your code */ }
stringMap.addEventListener("mapchanged", onMapChanged);
stringMap.removeEventListener("mapchanged", onMapChanged);
- or -
stringMap.onmapchanged = onMapChanged;
Public Custom Event MapChanged As MapChangedEventHandler(Of String, String) Implements MapChanged
Event Type
MapChangedEventHandler<Platform::String,Platform::String>
MapChangedEventHandler<winrt::hstring,winrt::hstring>