# EmoteWheelCancelEvent
> Fired when a player dismisses the Lectern emote wheel without choosing, Escape, or opening another screen over it. The counterpart of `EmoteWheelSelectEvent`.
`gg.lode.lecternapi.api.event.EmoteWheelCancelEvent`
---
## Signature
```java
public class EmoteWheelCancelEvent extends LecternClientEvent
```
---
## Example
The counterpart of [[EmoteWheelSelectEvent]]. Fires when the player escapes out of the wheel or
opens something over it:
```java
@EventHandler
public void onEmoteCancel(EmoteWheelCancelEvent event) {
wheelOpen.remove(event.getPlayer().getUniqueId());
}
```
No slot, because nothing was picked. `getPlayer()` comes from [[LecternClientEvent]].
---
## Related Pages
- [[EmoteWheelSelectEvent]]. The other outcome
- [[IEmoteManager]]. Showing the wheel