HTMLElement: mscandidatewindowhide event
Non-standard: This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
The mscandidatewindowhide
event is thrown after the Input Method Editor (IME) candidate window closes and is fully hidden.
This proprietary method is specific to Internet Explorer.
The handler of this event will see that the isCandidateWindowVisible
method returns false
, and no ClientRect
object is returned from getCandidateWindowClientRect()
.
Web applications need only register for this event once per element (the handler will remain valid for the lifetime of the element).
Syntax
Use the event name in methods like addEventListener()
, or set an event handler property.
js
addEventListener("mscandidatewindowhide", (event) => {});
onmscandidatewindowhide = (event) => {};
Event type
A generic Event
with no added properties.
See also
- Microsoft API extensions
- Related events:
mscandidatewindowupdate
andmscandidatewindowshow