RadialController.RotationChanged Event

Definition

Occurs when the wheel device is rotated while a custom RadialController tool is active.

Your app does not receive this event when:

// Register
event_token RotationChanged(TypedEventHandler<RadialController, RadialControllerRotationChangedEventArgs const&> const& handler) const;

// Revoke with event_token
void RotationChanged(event_token const* cookie) const;

// Revoke with event_revoker
RadialController::RotationChanged_revoker RotationChanged(auto_revoke_t, TypedEventHandler<RadialController, RadialControllerRotationChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<RadialController,RadialControllerRotationChangedEventArgs> RotationChanged;
function onRotationChanged(eventArgs) { /* Your code */ }
radialController.addEventListener("rotationchanged", onRotationChanged);
radialController.removeEventListener("rotationchanged", onRotationChanged);
- or -
radialController.onrotationchanged = onRotationChanged;
Public Custom Event RotationChanged As TypedEventHandler(Of RadialController, RadialControllerRotationChangedEventArgs) 

Event Type

Applies to

See also