MapControl.HeadingChanged 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当 MapControl 的 Heading 属性的值更改时发生。
// Register
event_token HeadingChanged(TypedEventHandler<MapControl, IInspectable const&> const& handler) const;
// Revoke with event_token
void HeadingChanged(event_token const* cookie) const;
// Revoke with event_revoker
MapControl::HeadingChanged_revoker HeadingChanged(auto_revoke_t, TypedEventHandler<MapControl, IInspectable const&> const& handler) const;
public event TypedEventHandler<MapControl,object> HeadingChanged;
function onHeadingChanged(eventArgs) { /* Your code */ }
mapControl.addEventListener("headingchanged", onHeadingChanged);
mapControl.removeEventListener("headingchanged", onHeadingChanged);
- or -
mapControl.onheadingchanged = onHeadingChanged;
Public Custom Event HeadingChanged As TypedEventHandler(Of MapControl, Object)
事件类型
TypedEventHandler<MapControl,IInspectable>