MiracastReceiverCursorImageChannel.PositionChanged 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.
An event which is raised when the position of the cursor image has changed.
// Register
event_token PositionChanged(TypedEventHandler<MiracastReceiverCursorImageChannel, IInspectable const&> const& handler) const;
// Revoke with event_token
void PositionChanged(event_token const* cookie) const;
// Revoke with event_revoker
MiracastReceiverCursorImageChannel::PositionChanged_revoker PositionChanged(auto_revoke_t, TypedEventHandler<MiracastReceiverCursorImageChannel, IInspectable const&> const& handler) const;
public event TypedEventHandler<MiracastReceiverCursorImageChannel,object> PositionChanged;
function onPositionChanged(eventArgs) { /* Your code */ }
miracastReceiverCursorImageChannel.addEventListener("positionchanged", onPositionChanged);
miracastReceiverCursorImageChannel.removeEventListener("positionchanged", onPositionChanged);
- or -
miracastReceiverCursorImageChannel.onpositionchanged = onPositionChanged;
Public Custom Event PositionChanged As TypedEventHandler(Of MiracastReceiverCursorImageChannel, Object)
Event Type
TypedEventHandler<MiracastReceiverCursorImageChannel,Object>
TypedEventHandler<MiracastReceiverCursorImageChannel,IInspectable>
Remarks
Use the Position property to retrieve the latest position of the cursor image.